我是靠谱客的博主 生动夕阳,最近开发中收集的这篇文章主要介绍vue 修改路由名字_Vue 路由设置title,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.在index.js中为需要添加title的路由地址增加meta

// 引入Vue

import Vue from 'vue'

// 引入router

import Router from 'vue-router'

// 引入组件

import Index from '@/components/Index'

import Found from '@/components/Found'

import DataStock from '@/components/DataStock'

import My from '@/components/My'

//注明使用router

Vue.use(Router)

export default new Router({

routes: [

{

path: '/',//路由地址--根路径

component: Index,

meta: {

title: '首页'

}

},

{

path:'/index.html',

component:Index,

meta: {

title: '首页'

}

},

{

path:'/found.html',

component:Found,

meta: {

title: '发现'

}

},

{

path:'/dataStock.html',

component:DataStock,

meta: {

title: '资料库'

}

},

,

{

path:'/my.html',

component:My,

meta: {

title: '我的'

}

}

],

mode:'history'

})

2.在main.js中设置title

// 引入vue

import Vue from 'vue'

//引入模板

import App from './App'

//引入router

import router from './router'

//CSS

// import '../static/css/common.css'

Vue.config.productionTip = false

new Vue({

el: '#app',

router,

template: '',//模板

components: { App },//组件

})

router.beforeEach((to, from, next) => {

document.title = to.meta.title

next()

})

// index.html-->main.js-->App.vue(组件)

最后

以上就是生动夕阳为你收集整理的vue 修改路由名字_Vue 路由设置title的全部内容,希望文章能够帮你解决vue 修改路由名字_Vue 路由设置title所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部