时间:2021-05-26
这篇文章主要介绍了vue新建项目并配置标准路由过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
配置路由所有用到的地方总共四步或者说四处
1.index.js(src--router--index.js)
2.main.js(src根目录下)
3.App.vue
注意App.vue里的<router-view></router-view>必须配置,这意味着项目运行起始的路由界面,
即对应index.js里配置的根路径http://localhost:8080/#,作为app.vue的入口页面
path: '/', name: 'Home', component: Home ,4.其它应用路由的界面
比如showowner.vue
<template> <div> <!-- <el-tree :data="data" @node-click="handleNodeClick"></el-tree> --> <el-container> <el-aside width="200px"> <el-tree :data="data" node-key="id" :props="defaultProps" :expand-on-click-node="false" :highlight-current="true" @node-click="handleNodeClick" > <span class="custom-tree-node" slot-scope="{ node, data }"> <span>{{ data.data.ownerName}}</span> <span> <el-button type="text" size="mini"> <i class="el-icon-edit"></i> </el-button> <el-button type="text" size="mini"> <i class="el-icon-plus"></i> </el-button> <el-button type="text" size="mini"> <i class="el-icon-delete"></i> </el-button> </span> </span> </el-tree> </el-aside> <el-main> <el-col :span="24" class="content-wrapper"> <transition name="fade" mode="out-in"> <router-view></router-view> </transition> </el-col> </el-main> </el-container> </div></template>其中的嵌入式布局el-main里配置<router-view></router-view>,意味着在本界面showowner.vue触发路由将要跳转的位置,即要跳转到el-main处
<el-main> <el-col :span="24" class="content-wrapper"> <transition name="fade" mode="out-in"> <router-view></router-view> </transition> </el-col> </el-main>然后是跳转路由写法,跳转到的界面是pathVariable,界面pathVariable就会显示在上面配置的el-main处
handleNodeClick(data) { console.log(data); //每次点击结点都要初始化ownerId this.domId = data.data.domId; this.ownerId = data.data.ownerId; this.varify(); this.$router.push({ path: this.pathVariable, query: { domId: this.domId, ownerId: this.ownerId } }); }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1、首先需要在vue-cli项目中配置bootstrap,jquery2、然后新建vue文件,如index.vue,index.vue内容如下:3、配置路由即可
首先新建vue工程,一般我们不会特殊处理路由,但当项目页面越来越多,路由配置也会越来越大,路由文件就会变得不好维护importVuefrom'vue'impor
一、如何去除vue项目中访问地址的#vue2中在路由配置中添加mode(vue-cli创建的项目在src/router/index.js)exportdefau
1.在vue项目根目录下新建vue.config.js(不是在src下面)vue.config.js配置文件:module.exports={//基本路径bas
1.项目根目录下新建vue.config.js,进行如下配置即可module.exports={publicPath:'',};补充知识:Vue-CLI3.0更