zoukankan      html  css  js  c++  java
  • vue-router使用

    一、注册vue-router

    import VueRouter from 'vue-router'
    
    Vue.use(VueRouter);

    二、创建 router 实例并routes 定义路由

    const router = new VueRouter({
      mode:"history",
      routes: [
        { path: "/", component: Vmain },
        { path: "/markedown", component: Vcontent },
      ]
    })

    三、定义(路由)组件

      导入

    import Vcontent from './components/Vcontent'
    import Vmain from './components/Vmain'

    四、创建和挂载根实例

    new Vue({
      el: '#app',
      router ,
      components: { App },
      template: '<App/>'
    })

    五、HTML使用

    <template>
      <div class="app">
        <router-link to="/">首页</router-link>
        <router-link to="/markedown">marked</router-link>
    
        <router-view></router-view>
      </div>
    </template>

    注意问题:

      1、创建router和挂载时,关键字router一定不能错

      2、定义路由时,routes关键子一定一定不能错

      3、路由出口<router-view></router-view>一定一定要写

  • 相关阅读:
    ajax post 时 form数据serialize()
    dapper 自定义数据库字段和代码中Model字段不一致时候的mapping方法
    TImage 的一些操作
    AOP
    SSL、数字签名、CA 工作原理
    RESTFUL
    tomcat
    Hibernate
    设计模式
    Spring配置
  • 原文地址:https://www.cnblogs.com/aizhinong/p/12609849.html
Copyright © 2011-2022 走看看