31 lines
619 B
HTML
31 lines
619 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<div id="ttt">
|
|
<VG></VG>
|
|
</div>
|
|
|
|
</body>
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@3.2.40/dist/vue.global.min.js"></script>
|
|
<script type="module">
|
|
const { createApp } = Vue;
|
|
import VG from './exam.vue.js';
|
|
|
|
console.log(createApp);
|
|
console.log(VG);
|
|
|
|
let sss = createApp({
|
|
components: {
|
|
VG: VG
|
|
},
|
|
}).mount("#ttt");
|
|
</script>
|
|
<style>
|
|
</style>
|
|
</html> |