mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
增加其他测试案例
This commit is contained in:
parent
5dec585d4e
commit
83965c11dd
59
other/test.html
Normal file
59
other/test.html
Normal file
@ -0,0 +1,59 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<script src="https://unpkg.com/vue@3"></script>
|
||||
<script src="https://unpkg.com/vue-router@4"></script>
|
||||
<script src="https://unpkg.com/http-vue-loader"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h1>Hello App!</h1>
|
||||
<div id="app">
|
||||
<div>
|
||||
<router-link to="/">Go to Home</router-link>
|
||||
</div>
|
||||
<div>
|
||||
<router-link to="/about">Go to 1</router-link>
|
||||
</div>
|
||||
<div>
|
||||
<router-link to="/4213412">Go to 2</router-link>
|
||||
</div>
|
||||
<div>
|
||||
<router-link to="/fdasfa">Go to 3</router-link>
|
||||
</div>
|
||||
<router-view></router-view>
|
||||
</div>
|
||||
<script>
|
||||
|
||||
const router = VueRouter.createRouter({
|
||||
routes: [],
|
||||
history: VueRouter.createWebHashHistory(),
|
||||
});
|
||||
|
||||
router.beforeEach(function (to, fr, next) {
|
||||
console.log(fr.fullPath, '-- to -->', to.fullPath)
|
||||
if (router.hasRoute(to.fullPath)) {
|
||||
next();
|
||||
} else {
|
||||
router.addRoute({
|
||||
name: to.fullPath,
|
||||
path: to.fullPath,
|
||||
component: httpVueLoader('test.html.vue')
|
||||
});
|
||||
next({name: to.fullPath});
|
||||
}
|
||||
});
|
||||
|
||||
router.afterEach(function (to) {
|
||||
if (router.hasRoute(to.fullPath)) {
|
||||
router.removeRoute(to.fullPath)
|
||||
}
|
||||
});
|
||||
|
||||
Vue.createApp({}).use(router).mount('#app')
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
22
other/test.html.vue
Normal file
22
other/test.html.vue
Normal file
@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="hello">Hello {{ who }}</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
data: function () {
|
||||
return {
|
||||
who: 'xxx'
|
||||
}
|
||||
},
|
||||
created: function () {
|
||||
console.log(234123)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.hello {
|
||||
background-color: #ffe;
|
||||
}
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user