• vue-router createWebHashHistory


    https://next.router.vuejs.org/zh/installation.html

    创建项目是选上vue-router,没有选择vue-router的话要手动安装  

    npm install vue-router@4

    package.json

    App.vue

    <template>
      <div id="nav">
        <!-- 导航 -->
        <router-link to="/">Home</router-link> |
        <router-link to="/about">About</router-link> |
        <router-link to="/test1_bak">Test1_bak</router-link> |
        <router-link to="/test1">Test1</router-link> |
        <router-link to="/test2">Test2</router-link>
      </div>
      <!-- 路由出口 -->
      <router-view/>
    </template>
    
    <style>
    #app {
      font-family: Avenir, Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      color: #2c3e50;
    }
    
    #nav {
      padding: 10px;
      background-color: lightskyblue;
    }
    
    #nav a {
      font-weight: bold;
      color: #2c3e50;
    }
    
    #nav a.router-link-exact-active {
      color:orangered;
    }
    </style>

    index.js

    //引入
    import { createRouter, createWebHashHistory } from 'vue-router'
    import Home from '../views/Home.vue'
    
    //创建路由对象
    const routes = [
      {
        path: '/',
        name: 'Home',
        component: Home
      },
        //路由重定向
      {
        path: '/home',
        redirect:'/'
      },
      {
        path: '/about',
        name: 'About',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
      },
      {
        path: '/test1_bak',
        name: 'Test1_bak',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Test1_bak.vue')
      },
      {
        path: '/test1',
        name: 'Test1',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Test1.vue')
      },
      {
        path: '/test2',
        name: 'Test2',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Test2.vue')
      }
    ]
    
    const router = createRouter({
      history: createWebHashHistory(),
      routes
    })
    
    //导出路由对象
    export default router

    main.js

    import { createApp } from 'vue'
    import App from './App.vue'
    //引入路由对象
    // import router from './router'
    import router from './router/index.js'
    
    createApp(App).use(router).mount('#app')

  • 相关阅读:
    python接口自动化33-json解析神器jsonpath
    python测试开发django-79.ORM查询之datetime()格式化(extra )
    python测试开发django-78.ORM查询之extra
    python测试开发django-77.ORM如何添加 DateTimeField 不显示毫秒
    python测试开发django-76.ORM查询之Q查询
    python测试开发django-75.ORM根据日期查询(__range)
    Mysql 跨库数据迁移 -- python 脚本
    Mysql 视图
    mysql update select 从查询结果中更新数据
    Elastic Stack 入门
  • 原文地址:https://www.cnblogs.com/mingforyou/p/15209936.html
Copyright © 2020-2023  润新知