Showing
7 changed files
with
73 additions
and
1 deletions
| ... | @@ -7,8 +7,10 @@ export {} | ... | @@ -7,8 +7,10 @@ export {} |
| 7 | 7 | ||
| 8 | declare module '@vue/runtime-core' { | 8 | declare module '@vue/runtime-core' { |
| 9 | export interface GlobalComponents { | 9 | export interface GlobalComponents { |
| 10 | + NutCol: typeof import('@nutui/nutui-taro')['Col'] | ||
| 10 | NutConfigProvider: typeof import('@nutui/nutui-taro')['ConfigProvider'] | 11 | NutConfigProvider: typeof import('@nutui/nutui-taro')['ConfigProvider'] |
| 11 | NutDialog: typeof import('@nutui/nutui-taro')['Dialog'] | 12 | NutDialog: typeof import('@nutui/nutui-taro')['Dialog'] |
| 13 | + NutRow: typeof import('@nutui/nutui-taro')['Row'] | ||
| 12 | RouterLink: typeof import('vue-router')['RouterLink'] | 14 | RouterLink: typeof import('vue-router')['RouterLink'] |
| 13 | RouterView: typeof import('vue-router')['RouterView'] | 15 | RouterView: typeof import('vue-router')['RouterView'] |
| 14 | } | 16 | } | ... | ... |
| 1 | +/* | ||
| 2 | + * @Date: 2023-03-23 11:17:54 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2023-03-24 11:26:51 | ||
| 5 | + * @FilePath: /custom_form/src/app.config.js | ||
| 6 | + * @Description: 文件描述 | ||
| 7 | + */ | ||
| 1 | export default defineAppConfig({ | 8 | export default defineAppConfig({ |
| 2 | pages: [ | 9 | pages: [ |
| 3 | - 'pages/index/index' | 10 | + 'pages/index/index', |
| 11 | + 'pages/table/index', | ||
| 12 | + 'pages/auth/index', | ||
| 13 | + 'pages/stop/index', | ||
| 4 | ], | 14 | ], |
| 5 | window: { | 15 | window: { |
| 6 | backgroundTextStyle: 'light', | 16 | backgroundTextStyle: 'light', | ... | ... |
src/pages/auth/index.config.js
0 → 100644
src/pages/auth/index.vue
0 → 100644
| 1 | +<!-- | ||
| 2 | + * @Date: 2023-03-24 11:27:11 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2023-03-24 11:27:28 | ||
| 5 | + * @FilePath: /custom_form/src/pages/auth/index.vue | ||
| 6 | + * @Description: 文件描述 | ||
| 7 | +--> | ||
| 8 | +<template> | ||
| 9 | + <div class=""></div> | ||
| 10 | +</template> | ||
| 11 | + | ||
| 12 | +<script setup> | ||
| 13 | +import { ref } from 'vue' | ||
| 14 | + | ||
| 15 | +</script> | ||
| 16 | + | ||
| 17 | +<style lang="less" scoped> | ||
| 18 | +</style> |
src/pages/stop/index.config.js
0 → 100644
src/pages/stop/index.vue
0 → 100644
| 1 | +<!-- | ||
| 2 | + * @Date: 2023-03-24 11:27:18 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2023-03-24 11:27:37 | ||
| 5 | + * @FilePath: /custom_form/src/pages/stop/index.vue | ||
| 6 | + * @Description: 文件描述 | ||
| 7 | +--> | ||
| 8 | +<template> | ||
| 9 | + <div class=""></div> | ||
| 10 | +</template> | ||
| 11 | + | ||
| 12 | +<script setup> | ||
| 13 | +import { ref } from 'vue' | ||
| 14 | + | ||
| 15 | +</script> | ||
| 16 | + | ||
| 17 | +<style lang="less" scoped> | ||
| 18 | +</style> |
-
Please register or login to post a comment