Vue3---Vue3项目切换(设置)路由模式

  • 解决用vue3项目npm run build  之后dist文件打开出现空白问题
  • hash模式:在路由index.js文件中导入 createWebHashHistory
  • import {createRouter,createWebHashHistory} from 'vue-router'

    在路由index.js文件中导入注册使用 createWebHashHistory

  • const router = createRouter({
      history: createWebHashHistory(process.env.BASE_URL),
      routes
    })

  • history模式:在路由index.js文件中导入 createWebHistory
  • import {createRouter,createWebHistory} from 'vue-router'

    在路由index.js文件中导入注册使用 createWebHistory

  • const router = createRouter({
      history: createWebHistory(process.env.BASE_URL),
      routes
    })
    

上一篇:15_Python_面向对象_基本语法


下一篇:Photoshop 美女打造水晶亮白的质感肤色