vue-sfc-compiler/template/index.html

19 lines
334 B
HTML
Raw Normal View History

2018-04-22 01:58:46 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VueJS Component Test</title>
<script src="https://unpkg.com/vue"></script>
<script src="dist/example.js"></script>
2018-04-22 01:58:46 +00:00
</head>
<body>
<div id="wrapper">
<example></example>
2018-04-22 01:58:46 +00:00
</div>
<script>
var app = new Vue({
el : '#wrapper'
});
</script>
</body>
</html>