当前位置:   article > 正文

【vue3项目部署到服务器上】_vue3部署到服务器

vue3部署到服务器

vue3项目部署到服务器上

路由下面的index.js

import { createRouter, createWebHistory, createWebHashHistory } from 'vue-router'
import index from '../views/index.vue'
const routes = [{
        path: '/',
        name: 'index',
        component: index,
        children: [{
                path: 'home', //首页
                name: 'home',
                component: () =>
                    import ('../views/home.vue')
            },
        ]
    },
    {
        path: '/login',//登录
        name: 'login',
        component: () =>
            import ('../views/login.vue')
    },
    {
        path: '/register', //注册
        name: 'register',
        component: () =>
            import ('../views/register.vue')
    }, 
]

const router = createRouter({
    history: createWebHashHistory(process.env.BASE_URL),
    routes
})
export default router
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

路由要部署到服务器上的话,需要注意的是,
必须是哈希模式,不能是历史模式.
记得导入createWebHashHistory,不然,不成功
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/120370
推荐阅读
相关标签
  

闽ICP备14008679号