美文网首页Web前端之路
Vue项目新建一个路由页面

Vue项目新建一个路由页面

作者: 祈澈菇凉 | 来源:发表于2019-05-29 08:30 被阅读239次

    我们现在要新建一个测试页面,命名为Test.vue

    1:在components底下新建Test.vue


    <template>
        <div>我是测试界面</div>
    </template>
    
    <script>
    </script>
    
    <style>
    </style>
    

    2:打开App.vue
    {name:'/components/Test',navItem:'测试界面'},

    3:打开路由来,导入组件
    index.js

    import Test from '@/components/Test'
    
    {
          path: '/components/Test',
          name: 'Test',
          component: Test
        }
    

    4:查看效果


    好啦,新的路由页面已经建立了。


    原文作者:祈澈姑娘 技术博客:https://www.jianshu.com/u/05f416aefbe1
    90后前端妹子,爱编程,爱运营,文艺与代码齐飞,魅力与智慧共存的程序媛一枚,对于博客上面有不会的问题,欢迎加入编程微刊qq群:260352626。

    相关文章

      网友评论

        本文标题:Vue项目新建一个路由页面

        本文链接:https://www.haomeiwen.com/subject/envvzqtx.html