詳解windows下vue-cli及webpack 構(gòu)建網(wǎng)站(四) 路由vue-router的使用
windows下vue-cli及webpack 構(gòu)建網(wǎng)站(一)環(huán)境安裝
windows下vue-cli及webpack 構(gòu)建網(wǎng)站(二)導入bootstrap樣式
windows下vue-cli及webpack 構(gòu)建網(wǎng)站(三)使用組件
1、本篇文章是建立在以上三篇文章的基礎(chǔ)上的。
2、安裝 vue-router 插件,運行cmd進入到項目目錄下面,運行以下命令:
cnpm install vue-router --save-dev

3、在src文件夾下面新建一個文件夾page用于存放模板文件,然后分別在這個文件夾下面新建 index.vue、list.vue兩個文件,然后打開index.vue粘貼以下代碼:
<template>
<div class="jumbotron">
<h1>這里是首頁!</h1>
</div>
</template>
保存之后再打開list.vue粘貼以下代碼:
<template>
<div class="list-group">
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="list-group-item active">
這里是列表頁
</a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="list-group-item">Dapibus ac facilisis in</a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="list-group-item">Morbi leo risus</a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="list-group-item">Porta ac consectetur ac</a>
<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="list-group-item">Vestibulum at eros</a>
</div>
</template>
好了,兩個頁面的內(nèi)容都準備好了,接下來我們修改入口文件app.vue的內(nèi)容吧
4、打開src文件夾下面的app.vue文件,修改代碼為
<template>
<div>
<HtmlHeader></HtmlHeader>
<router-view
class="view"
keep-alive
transition
transition-mode="out-in">
</router-view>
<HtmlFooter></HtmlFooter><span style="white-space:pre"> </span>
</div>
<span style="white-space:pre"> </span>
</template>
<script>
import HtmlHeader from './components/header'
import HtmlFooter from './components/footer'
export default {
components: {
HtmlHeader,
HtmlFooter
}
}
</script>
這里用了 router-view 來把剛才新建的兩個頁面加載到這里來
修改了入口文件接下來就是要進行路由規(guī)則的配置了。
5、在src文件夾下面新建一個文件夾config用來存放路由配置,在config文件夾下面新建routes.js文件并打開,然后粘貼以下代碼并保存:
//加載模板文件
import index from '../page/index'
import list from '../page/list'
//路由規(guī)則設(shè)置
export default [
{
path: '/',
component: index
},
{
path: '/list',
component: list
}
]
現(xiàn)在路由配置文件也已經(jīng)配置好了,我們接下來就是要打開sec文件夾下面的main.js文件設(shè)置路由使用了
6、打開main.js 文件,在頭部加入以下代碼
// 引用路由插件
import VueRouter from 'vue-router'
// 試用路由插件
Vue.use(VueRouter)
//引入路由配置文件
import routes from './config/routes'
// 使用配置文件規(guī)則
const router = new VueRouter({
mode: 'history',
base: __dirname,
routes: routes })
這個是引入路由插件并且使用,然后加載路由規(guī)則
接著把
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})
修改為
const app = new Vue({
router: router,
render: h => h(App)
}).$mount('#app')

設(shè)置完之后整個頁面代碼如圖
7、加載開始運行 npm run dev 查看效果吧,打開http://localhost:8080 和http://localhost:8080/list 就可以看到不同的效果了
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Vue+ElementUI實現(xiàn)從后臺動態(tài)填充下拉框的示例代碼
本文主要介紹了Vue+ElementUI實現(xiàn)從后臺動態(tài)填充下拉框的示例代碼,文中通過示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-02-02
vue3使用xgPalyer實現(xiàn)截圖功能的方法詳解
這篇文章主要為大家詳細介紹了如何在vue3中使用xgPalyer截圖功能,以及自定義插件,文中的示例代碼講解詳細,感興趣的小伙伴可以跟隨小編一起學習一下2024-02-02

