這篇文章給大家分享的是有關(guān)vue如何新建項(xiàng)目并配置標(biāo)準(zhǔn)路由的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
三都ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話(huà)聯(lián)系或者加微信:18982081108(備注:SSL證書(shū)合作)期待與您的合作!
配置路由所有用到的地方總共四步或者說(shuō)四處
1.index.js(src--router--index.js)
import Vue from 'vue' import Router from 'vue-router' // import HelloWorld from '@/components/HelloWorld' import Home from '@/components/layout/Home' import showuser from '@/components/t_dom_owner_user/showuser' import addusersfromother from '@/components/t_dom_owner_user/addusersfromother' import showresT from '@/components/t_dom_owner_resT/showresT' Vue.use(Router) export default new Router({ // routes: [ // { // path: '/', // name: 'Login', // component: Login // } // ] routes: [ { path: '/', name: 'Home', component: Home , children: [ { path: '/showuser', name: 'showuser', component: showuser, }, { path: '/showresT', name: 'showresT', component: showresT }] }, { path: '/addusersfromother', name: 'addusersfromother', component: addusersfromother }, ] })
2.main.js(src根目錄下)
import Vue from 'vue' import App from './App.vue' import ElementUI from 'element-ui'; import router from './router' import 'element-ui/lib/theme-chalk/index.css'; import '../public/css/main.css' import store from '../store' Vue.config.productionTip = false; Vue.use(ElementUI); new Vue({ router, render: h => h(App), store, }).$mount('#app')
3.App.vue
注意App.vue里的
即對(duì)應(yīng)index.js里配置的根路徑http://localhost:8080/#,作為app.vue的入口頁(yè)面
path: '/', name: 'Home', component: Home ,
4.其它應(yīng)用路由的界面
比如showowner.vue
{{ data.data.ownerName}}
其中的嵌入式布局el-main里配置
然后是跳轉(zhuǎn)路由寫(xiě)法,跳轉(zhuǎn)到的界面是pathVariable,界面pathVariable就會(huì)顯示在上面配置的el-main處
handleNodeClick(data) { console.log(data); //每次點(diǎn)擊結(jié)點(diǎn)都要初始化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 } }); }
感謝各位的閱讀!關(guān)于“vue如何新建項(xiàng)目并配置標(biāo)準(zhǔn)路由”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!