15 lines
247 B
Vue
15 lines
247 B
Vue
![]() |
<template>
|
||
|
<div style="margin: 100px">
|
||
|
<Rate></Rate>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {},
|
||
|
data () {
|
||
|
return {};
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {}
|
||
|
};
|
||
|
</script>
|