feat:初始化工程
This commit is contained in:
13
src/views/app/record/index.vue
Normal file
13
src/views/app/record/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div class="common-mobile-view">
|
||||
记录
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
13
src/views/app/stats/index.vue
Normal file
13
src/views/app/stats/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div class="common-mobile-view">
|
||||
统计
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
13
src/views/login/index.vue
Normal file
13
src/views/login/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<div>
|
||||
登录
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
12
src/views/meta.ts
Normal file
12
src/views/meta.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { IRouteMetaConfig } from 'vue3-common/types'
|
||||
|
||||
export const routerMeta: IRouteMetaConfig = {
|
||||
'/record': {
|
||||
path: '/record',
|
||||
redirect: '/record/index'
|
||||
},
|
||||
'/stats': {
|
||||
path: '/stats',
|
||||
redirect: '/stats/index'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user