Showing
2 changed files
with
34 additions
and
1 deletions
src/components/template/index.vue
0 → 100644
| 1 | +<template> | ||
| 2 | + <div></div> | ||
| 3 | +</template> | ||
| 4 | + | ||
| 5 | +<script setup> | ||
| 6 | +import { ref, reactive, onMounted } from 'vue' | ||
| 7 | +const props = defineProps({ | ||
| 8 | + type: String | ||
| 9 | +}) | ||
| 10 | + | ||
| 11 | + onMounted(() => { | ||
| 12 | + | ||
| 13 | + }) | ||
| 14 | +</script> | ||
| 15 | + | ||
| 16 | +<script> | ||
| 17 | +export default { | ||
| 18 | + data () { | ||
| 19 | + return { | ||
| 20 | + | ||
| 21 | + } | ||
| 22 | + }, | ||
| 23 | + mounted () { | ||
| 24 | + | ||
| 25 | + }, | ||
| 26 | + methods: { | ||
| 27 | + | ||
| 28 | + } | ||
| 29 | +} | ||
| 30 | +</script> | ||
| 31 | + | ||
| 32 | +<style lang="less" scoped> | ||
| 33 | +</style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment