vues6/example/index.html
garrettmills 65a20d9501
Big Bang
2020-04-21 23:53:00 -05:00

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>