25 lines
205 B
Vue
Executable File
25 lines
205 B
Vue
Executable File
<template>
|
|
<div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { ref } from 'vue/dist/vue.esm-bundler';
|
|
|
|
export default {
|
|
props: [
|
|
],
|
|
|
|
setup() {
|
|
return {
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
},
|
|
|
|
mounted() {
|
|
}
|
|
}
|
|
</script>
|