first commit
This commit is contained in:
36
index.html
Normal file
36
index.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<!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>
|
Reference in New Issue
Block a user