rename view name
This commit is contained in:
parent
c74c332e6a
commit
d7aea82ced
2793
oaf/package-lock.json
generated
Normal file
2793
oaf/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
6
oaf/postcss.config.js
Normal file
6
oaf/postcss.config.js
Normal file
@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
||||
@ -19,7 +19,7 @@ const router = createRouter({
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
},
|
||||
component: () => import('../view/home.vue')
|
||||
component: () => import('../views/home.vue')
|
||||
},
|
||||
{
|
||||
path: '/app',
|
||||
@ -27,27 +27,27 @@ const router = createRouter({
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
},
|
||||
component: () => import('../view/demo.vue')
|
||||
component: () => import('../views/demo.vue')
|
||||
},
|
||||
{
|
||||
path: '/wx',
|
||||
name: 'wx',
|
||||
component: () => import('../view/wx.vue')
|
||||
component: () => import('../views/wx.vue')
|
||||
},
|
||||
{
|
||||
path: '/login/:uuid?',
|
||||
name: 'login',
|
||||
component: () => import('../view/login.vue')
|
||||
component: () => import('../views/login.vue')
|
||||
},
|
||||
{
|
||||
path: '/register/:uuid?',
|
||||
name: 'register',
|
||||
component: () => import('../view/register.vue')
|
||||
component: () => import('../views/register.vue')
|
||||
},
|
||||
{
|
||||
path: '/:path(.*)',
|
||||
name: '404',
|
||||
component: () => import('../view/404.vue')
|
||||
component: () => import('../views/404.vue')
|
||||
}
|
||||
//...
|
||||
],
|
||||
|
||||
11
oaf/tailwind.config.js
Normal file
11
oaf/tailwind.config.js
Normal file
@ -0,0 +1,11 @@
|
||||
module.exports = {
|
||||
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||||
darkMode: false, // or 'media' or 'class'
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user