```feat(money-detail): 创建页面结构模板

添加了新的Vue组件模板,为金钱详情页面奠定了基础。
目前该页面包含一个script部分,其中有一个默认导出的对象{name: "index"},以及空的template和style部分。
```
master
wxy 2024-08-27 14:16:53 +08:00
parent 8dbc2216d5
commit 19e9a7bd87
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<script>
export default {
name: "index"
}
</script>
<template>
</template>
<style scoped lang="scss">
</style>