25 lines
532 B
HTML
25 lines
532 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>VuES6 Test</title>
|
|
</head>
|
|
<body>
|
|
<div id="vue-app">
|
|
<hello-world tagline="This is a test!"></hello-world>
|
|
</div>
|
|
<script src="vue-2.6.11.js"></script>
|
|
<script src="vues6.js" type="module"></script>
|
|
<script type="module">
|
|
import { components } from './components.js'
|
|
import VuES6Loader from './vues6.js'
|
|
|
|
const loader = new VuES6Loader(components)
|
|
loader.load()
|
|
|
|
const app = new Vue({
|
|
el: '#vue-app',
|
|
data: {}
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |