深入理解vue2.0路由如何配置問題
這兩天學(xué)習(xí)了Vue.js 感覺路由這個(gè)地方知識(shí)點(diǎn)挺多的,而且很重要,所以,今天添加一點(diǎn)小筆記。
項(xiàng)目基本手腳架搭建完畢后,建一個(gè)router文件夾,里面配置一個(gè)index.js文件。
文件內(nèi)容:
npm install vue-router vue-resource --save-dev(安裝 vue 路由模塊vue-router和網(wǎng)絡(luò)請求模塊vue-resource)
import Vue from 'vue'
import Router from 'vue-router' (----引入路由---注釋說明)
import About from '@/components/about'(--這些需要引入的是components文件夾下面創(chuàng)建的一些模板---相對路徑----about代表about.vue模塊)
import Home from '@/components/home'
import Brand from '@/components/brand'
import Company from '@/components/company'
import Connect from '@/components/connect'
import Main from '@/components/main'
import Join from '@/components/join'
import News from '@/components/news'
import Products from '@/components/products'
import son1 from '@/components/son1'
import son2 from '@/components/son2'
import list from '@/components/list'
import newList from '@/components/newList'
import culture from '@/components/culture'
import certification from '@/components/certification'
import zhuanjia from '@/components/zhuanjia'
Vue.use(Router) (--使用---)
export default new Router({
routes: [
{
path: '/main',
name: 'main',
component: Main
},--------------------------------
{ path: '/', 這里是路由重定向,比如頁面加載時(shí)候進(jìn)入首頁
redirect: '/main' (比如給路由一個(gè)選中后的樣式為紅色 那么這里就能用到了---.router-link-active{樣式})
},---------------------------------
{---------------------這里是配置子路由
path: '/brand',
name: 'brand',
component: Brand,
children: [
{
path: '/',
name: 'newList',
component: newList
},
{
path: '/brand/culture',
name: 'culture',
component: culture
},
{
path: '/brand/certification',
name: 'certification',
component: certification
},
{
path: '/brand/zhuanjia',
name: 'zhuanjia',
component: zhuanjia
}
]
},
{
path: '/about',
name: 'about',
component: About
},
{
path: '/company',
name: 'company',
component: Company
},
{
path: '/connect',
name: 'connect',
component: Connect
},
{
path: '/home',
name: 'home',
component: Home
},
{
path: '/join',
name: 'join',
component: Join,
children: [
{
path: '/',
name: 'son1',
component: son1
},
{
path: '/join/son2',
name: 'son2',
component: son2
}
]
},
{
path: '/list',
name: 'list',
component: list
},
{
path: '/news',
name: 'news',
component: News
},
{
path: '/products',
name: 'products',
component: Products
}
]
})
接下來就是在每一個(gè)模塊文件中加入這樣的一句話暴露出去:
<script>
export default {
name: 'about' ---自定義模塊名字
}
</script>
在app中我們可以這樣寫:
<template>
<div id="app1" class="pagebox">
<div style="clear:both;"></div>
<ul class="index-tap">
<li><router-link to="/main">首頁<p></p></router-link></li>
<li><router-link to="/about">關(guān)于我們<p></p></router-link></li>
<li><router-link to="/products">產(chǎn)品專區(qū)<p></p></router-link></li>
<li><router-link to="/news">新聞資訊<p></p></router-link></li>
</ul>
<ul class="index-tap">
<li><router-link to="/company">企業(yè)風(fēng)采<p></p></router-link></li>
<li><router-link to="/join">招商加盟<p></p></router-link></li>
<li><router-link to="/connect">聯(lián)系我們<p></p></router-link></li>
<li><router-link to="/brand">品牌介紹<p></p></router-link></li>
</ul>
<div style="clear:both;"></div>
<router-view transition transition-mode="out-in"></router-view>
<div style="clear:both;"></div>
<ul class="index-footer clearx">
<li v-on:click="showph = !showph">電話</li>
<li v-on:click="showmap = !showmap">地圖</li>
<li v-on:click="showd = !showd">分享</li>
<!-- JiaThis Button BEGIN -->
<transition name="slide-fade">
<div class="jiathis_style_32x32 share" v-show="showd">
<a class="jiathis_button_qzone"></a>
<a class="jiathis_button_tsina"></a>
<a class="jiathis_button_tqq"></a>
<a class="jiathis_button_weixin"></a>
<a class="jiathis_button_renren"></a>
</div>
</transition>
<!-- JiaThis Button END -->
<transition name="slide-fade">
<div class="share sharephone" v-show="showph">
18305452462
</div>
</transition>
<transition name="slide-fade">
<div class="share showmap" v-show="showmap">
<ditu></ditu>---------------------------------自定義模板
</div>
</transition>
</ul>
<div class="fuceng" v-if="showmap"></div>
</div>
</template>
<script>
import ditu from '@/components/home'
export default {
name: 'app',
data () {
return {
search: '',
showd: false,
showph: false,
showmap: false
}
},
mounted () {
this.init()
},
methods: {
Search () {
if (this.search !== '') {
this.$router.push({
path: '/list',
query: {
serInfo: this.search
}
})
} else {
alert('請輸入搜索內(nèi)容')
}
},
init: function () {
let url = 'http://v3.jiathis.com/code/jia.js'
let script = document.createElement('script')
script.setAttribute('src', url)
document.getElementsByTagName('head')[0].appendChild(script)
}
},
components: {
ditu
}
}
</script>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
vue中對接Graphql接口的實(shí)現(xiàn)示例
本文主要介紹了vue中對接Graphql接口的實(shí)現(xiàn)示例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-05-05
在vue.config.js中優(yōu)化webpack配置的方法
在日常開發(fā)中我們離不開打包工具webpack,但是不同的配置會(huì)影響我們項(xiàng)目的運(yùn)行構(gòu)建時(shí)間,也會(huì)影響打包之后項(xiàng)目包的大小,這篇文章記錄一下我使用過的可以優(yōu)化webpack的配置,需要的朋友可以參考下2024-05-05
vue-cli3.0項(xiàng)目打包后如何修改訪問后端地址
這篇文章主要介紹了vue-cli3.0項(xiàng)目打包后如何修改訪問后端地址,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-03-03
關(guān)于vue-router路由的傳參方式params query
這篇文章主要介紹了關(guān)于vue-router路由的傳參方式params query,具有很好的參考價(jià)值,希望對大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-10-10
Vue3+TypeScript+printjs實(shí)現(xiàn)標(biāo)簽批量打印功能的完整過程
最近在做vue項(xiàng)目時(shí)使用到了print-js打印,這里給大家分享下,這篇文章主要給大家介紹了關(guān)于Vue3+TypeScript+printjs實(shí)現(xiàn)標(biāo)簽批量打印功能的完整過程,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下2024-09-09

