Big Bang
This commit is contained in:
25
example/index.html
Normal file
25
example/index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user