You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>测试</title>
<link rel="shortcut icon" href="#" />
<!-- 导入样式 -->
<!-- <link rel="stylesheet" href="./cdn/dist/index.css" /> -->
<link rel="stylesheet" href="../theme-chalk/index.css" />
</head>
<body>
<div id="app">
<div>{{message}}</div>
<div>
<router-link to="/foo">Go to Foo</router-link>
</div>
<div>
<router-view></router-view>
</div>
</div>
<!-- JQuery -->
<script src="https://cdn.staticfile.org/jquery/3.6.0/jquery.min.js"></script>
<!-- 导入 Vue 3 -->
<script src="https://cdn.staticfile.org/vue/3.2.26/vue.global.prod.min.js"></script>
<script src="https://cdn.staticfile.org/vue-router/4.0.12/vue-router.global.prod.min.js"></script>
<!-- 导入组件库 -->
<script src="../dist/index.full.min.js"></script>
<!-- 自定义js -->
<script src="./index.js" type="module"></script>
</body>
</html>