vues6/example/index.html

25 lines
532 B
HTML
Raw Permalink Normal View History

2020-04-22 04:53:00 +00:00
<!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>