加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
9.路由.html 1019 Bytes
一键复制 编辑 原始数据 按行查看 历史
默一 提交于 2020-02-15 13:23 . 202002151323
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- 生产环境版本,优化了尺寸和速度
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
-->
<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>Router Test</h1>
<p>
<router-link to="/lnk1">Go To lnk1</router-link>
<router-link to="/lnk2">Go To lnk2</router-link>
</p>
<router-view></router-view>
</div>
</body>
<script>
const lnk1={template:'<div>This is link1</div>'}
const lnk2={template:'<div>This is link2</div>'}
const routes=[
{path:'/lnk1', component: lnk1},
{path:'/lnk2', component: lnk2}
]
const router = new VueRouter({
routes
})
const app = new Vue({
router
}).$mount('#app')
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化