详解在vue-cli中使用路由
程序员文章站
2022-09-08 15:21:08
1.首先npm中是否有vue-router
一般在vue-cli的时候就已经下载好了依赖包了
2.使用vue的话正常的需要涉及这几个文件
demo/src/route...
1.首先npm中是否有vue-router
一般在vue-cli的时候就已经下载好了依赖包了
2.使用vue的话正常的需要涉及这几个文件
demo/src/router/index.js
import vue from 'vue' import router from 'vue-router' import hello from '../components/hello'//首页 import test from '../components/test'//需要跳转的页面 给组件重新命名 vue.use(router) export default new router({ routes: [ {//首页 path: '/', name: 'hello', component: hello }, {//需要跳转的页面 path:'/test', name:'test', component:test//组件名字 } ] })
demo/src/app.vue
<template> <div id="app"> <img src="./assets/logo.png"> <p> <router-link to="/home">home</router-link>//跳转首页 <router-link to="/test">test</router-link>//跳转新页面 </p> <router-view></router-view>//页面渲染放置的部分 </div> </template> <script> export default { name: 'app' } </script> <style> #app { font-family: 'avenir', helvetica, arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
demo/src/main.js
import vue from 'vue' import app from './app' import router from './router' vue.config.productiontip = false /* eslint-disable no-new */ new vue({ el: '#app', router, template: '<app/>', components: { app } }).$mount('#app')//实例挂载到元素中
两个页面的组件
这样的话,基本的路由设置就好了,可以按照正常的npm run dev运行这个项目了
另外还有嵌套 自定义多种路由
具体的路由内容可以查看:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
jQuery中each方法的使用详解
-
在Python中处理字符串之isdecimal()方法的使用
-
在Webstorm中怎么使用babel让ES6转成ES5
-
详解PHP中的mb_detect_encoding函数使用方法_php技巧
-
v-for索引index在html中的使用
-
在字符串资源文件中添加HTML元素,直接使用字符串资源,HTML元素没起作用的解决办法_html/css_WEB-ITnose
-
在vue中如何使用cropperjs的方法(详细教程)
-
在JPA的@Query注解中使用limit条件(详解)
-
Redis在springboot中的使用教程
-
Mybatis中动态SQL,if,where,foreach的使用教程详解