詳解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)站(二)導(dǎo)入bootstrap樣式
windows下vue-cli及webpack 構(gòu)建網(wǎng)站(三)使用組件
1、本篇文章是建立在以上三篇文章的基礎(chǔ)上的。
2、安裝 vue-router 插件,運(yùn)行cmd進(jìn)入到項(xiàng)目目錄下面,運(yùn)行以下命令:
cnpm install vue-router --save-dev

3、在src文件夾下面新建一個(gè)文件夾page用于存放模板文件,然后分別在這個(gè)文件夾下面新建 index.vue、list.vue兩個(gè)文件,然后打開index.vue粘貼以下代碼:
<template>
<div class="jumbotron">
<h1>這里是首頁(yè)!</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">
這里是列表頁(yè)
</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>
好了,兩個(gè)頁(yè)面的內(nèi)容都準(zhǔn)備好了,接下來(lá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 來(lái)把剛才新建的兩個(gè)頁(yè)面加載到這里來(lái)
修改了入口文件接下來(lái)就是要進(jìn)行路由規(guī)則的配置了。
5、在src文件夾下面新建一個(gè)文件夾config用來(lái)存放路由配置,在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)配置好了,我們接下來(lái)就是要打開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 })
這個(gè)是引入路由插件并且使用,然后加載路由規(guī)則
接著把
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})
修改為
const app = new Vue({
router: router,
render: h => h(App)
}).$mount('#app')

設(shè)置完之后整個(gè)頁(yè)面代碼如圖
7、加載開始運(yùn)行 npm run dev 查看效果吧,打開http://localhost:8080 和http://localhost:8080/list 就可以看到不同的效果了
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
uniapp寬屏開發(fā)PC端方案及衍生問(wèn)題解決辦法
在uniapp中進(jìn)行寬屏開發(fā),主要是指在電腦端(PC端)使用寬屏顯示效果進(jìn)行應(yīng)用的開發(fā),這篇文章主要給大家介紹了關(guān)于uniapp寬屏開發(fā)PC端方案及衍生問(wèn)題解決辦法,需要的朋友可以參考下2024-03-03
解決微信瀏覽器緩存站點(diǎn)入口文件(IIS部署Vue項(xiàng)目)
這篇文章主要介紹了解決微信瀏覽器緩存站點(diǎn)入口文件(IIS部署Vue項(xiàng)目),本文給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-06-06
Vue+ElementUI實(shí)現(xiàn)從后臺(tái)動(dòng)態(tài)填充下拉框的示例代碼
本文主要介紹了Vue+ElementUI實(shí)現(xiàn)從后臺(tái)動(dòng)態(tài)填充下拉框的示例代碼,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-02-02
vue3使用xgPalyer實(shí)現(xiàn)截圖功能的方法詳解
這篇文章主要為大家詳細(xì)介紹了如何在vue3中使用xgPalyer截圖功能,以及自定義插件,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2024-02-02
vue實(shí)現(xiàn)element-ui對(duì)話框可拖拽功能
這篇文章主要介紹了vue實(shí)現(xiàn)element-ui對(duì)話框可拖拽功能,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-08-08
vue+js點(diǎn)擊箭頭實(shí)現(xiàn)圖片切換
這篇文章主要為大家詳細(xì)介紹了vue+js點(diǎn)擊箭頭實(shí)現(xiàn)圖片切換,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-06-06

