37 lines
754 B
HTML
37 lines
754 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<b>1111</b>
|
|
<div class="app"></div>
|
|
<a href="/test?id=1">测试</a>
|
|
<a href="http://baidu.com">百度</a>
|
|
<a href="#a">锚点</a>
|
|
</body>
|
|
<script src="./dist/Pandora.min.js"></script>
|
|
<script>
|
|
const app = $('.app').Router({
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
component: `./template/home/`,
|
|
callback: () => {
|
|
console.log('Home')
|
|
$('b').text(3333)
|
|
},
|
|
},
|
|
{
|
|
path: '/test',
|
|
component: `./template/test/`,
|
|
callback: query => {
|
|
console.log(query)
|
|
},
|
|
},
|
|
],
|
|
})
|
|
</script>
|
|
</html>
|