主頁 > 知識庫 > html中使用vue-router的示例代碼

html中使用vue-router的示例代碼

熱門標簽:電銷外呼線路改不外呼線路 crm外呼系統(tǒng)好不好 長春極信防封電銷卡公司 貴陽ai外呼系統(tǒng) 電話機器人批發(fā) 強訊外呼系統(tǒng) 智能電銷機器人廣告語 愛巢地圖標注 重慶人工智能電銷機器人報價

引入vue和vue-router

<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>

完整的示例

<!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)文章,希望大家以后多多支持腳本之家!

標簽:陜西 廣安 保定 吳忠 清遠 上海 內(nèi)蒙古 山南

巨人網(wǎng)絡(luò)通訊聲明:本文標題《html中使用vue-router的示例代碼》,本文關(guān)鍵詞  html,中,使用,vue-router,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html中使用vue-router的示例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于html中使用vue-router的示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章