<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
</head>
<body>
<div id="app">
<h1>Hello !</h1>
<p>
<!-- 使用 router-link 組件來導(dǎo)航. -->
<!-- 通過傳入 `to` 屬性指定鏈接. -->
<!-- <router-link> 默認會被渲染成一個 `<a>` 標簽 -->
<router-link to="/hash1">切換至com1</router-link>
<router-link to="/hash2">切換至com2</router-link>
</p>
<!-- 路由出口 -->
<!-- 路由匹配到的組件將渲染在這里 -->
<router-view></router-view>
<!-- router-link上的其他屬性: -->
<!-- 設(shè)置 replace 屬性的話,當(dāng)點擊時,會調(diào)用 router.replace() 而不是 router.push(),
導(dǎo)航后不會留下 history 記錄。 -->
<!-- <router-link :to="{ path: '/abc'}" replace></router-link> -->
<!-- 有時候想要 <router-link> 渲染成某種標簽,例如 <li>。 于是我們使用
tag prop 類指定何種標簽,同樣它還是會監(jiān)聽點擊,觸發(fā)導(dǎo)航。 -->
<!-- <router-link to="/foo" tag="li">foo</router-link> -->
<!-- active-class 設(shè)置 鏈接激活時使用的 CSS -->
<!-- event 聲明可以用來觸發(fā)導(dǎo)航的事件??梢允且粋€字符串或是一個包含字符串的數(shù)組。 -->
</div>
</body>
<script>
// 1. 定義(路由)組件。
const com1 = { template: '<div>路由1</div>' }
const com2 = { template: '<div>路由2</div>' }
// 2. 定義路由
// 每個路由應(yīng)該映射一個組件。 其中"component" 可以是 通過 Vue.extend()
// 創(chuàng)建的組件構(gòu)造器, 或者,只是一個組件配置對象.
const routes = [
{ path: '/hash1', component: com1 },
{ path: '/hash2', component: com2 }
]
// 3. 創(chuàng)建 router 實例,然后傳 `routes` 配置
const router = new VueRouter({
routes // (縮寫)相當(dāng)于 routes: routes
})
// 4. 創(chuàng)建和掛載根實例。
// 要通過 router 配置參數(shù)注入路由,從而讓整個應(yīng)用都有路由功能
const app = new Vue({
router
}).$mount('#app');//el是自動掛載,mount是手動掛載(延時)
</script>
</html>
到此這篇關(guān)于html中使用vue-router的示例代碼的文章就介紹到這了,更多相關(guān)html使用vue-router內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!