• vuerouter-1.路由基础


    1.路由
    注意
    2.安装
    npm install vue-router --save
    3.在项目中使用它,明确的通过Vue.use()安装路由功能
    import VueRouter from 'vue-router'
    Vue.use(VueRouter)
    4.创建路由
    //创建路由
    const router=new VueRouter({
    routes:[
    {
    path:"/",
    name:"HelloWorld",
    component:HelloWorld
    }
    ]
    })
    5.给出路由显示的位置
    <router-view />
    6.将路由对象注入new实例对象中
    new Vue({
    el: '#app',
    router,
    components: { App },
    template: '<App/>'
    })

    实例------------------------------------------------------------------------------------------------------------------------------

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import VueRouter from 'vue-router'
    import HelloWorld from './components/HelloWorld'
    Vue.use(VueRouter)
    Vue.config.productionTip = false


    //创建路由
    const router=new VueRouter({
    routes:[
    {
    path:"/h",
    name:"HelloWorld",
    component:HelloWorld
    }
    ]
    })

    /* eslint-disable no-new */
    new Vue({
    el: '#app',
    router,
    components: { App },
    template: '<App/>'
    })

  • 相关阅读:
    linux命令 time
    linux命令 awk
    php学习十四:抽象,接口和多态
    php学习十三:其他关键字
    php学习十二:其他魔术方法
    php学习十一:组合
    php学习十:继承
    php学习九:存取器&魔术方法
    php学习八:封装
    php学习七:时间和日期
  • 原文地址:https://www.cnblogs.com/xiao-peng-ji/p/11334694.html
Copyright © 2020-2023  润新知