vue 修改路由名字 Vue 路由設定title

2021-10-18 17:48:58 字數 1285 閱讀 7749

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'

//引入模板

//引入router

import router from './router'

//css

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

vue.config.productiontip = false

new vue({

router,

template: '',//模板

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

document.title = to.meta.title

next()

vue路由配置,vue子路由配置

現在乙個專案已經部署完成,接下來我們從路由開始!還記得在初始化專案的時候,有提示是否需要安裝vue router,對沒錯,vue中路由全靠它!首先找到路由配置檔案 router index.js,是整個專案路由配置檔案 首先看最上面的,這個模組引入,es2015中的import.from.將你需要配...

Vue路由獲取路由引數

vue路由設定路由引數有2種方式 登入通過query配置的路徑顯示如下 註冊通過query配置的路徑顯示如下 通過該方法配置的引數,需要在配置路由的時候給引數留個坑,如下圖 獲取路由引數的方法 this.route.query this.route.params doctype html html ...

vue路由配置

1.main.js the vue build version to load with the import command runtime only or standalone has been set in webpack.base.conf with an alias.import vue ...