vue-sfc-compiler/template/index.html

19 lines
334 B
HTML

<!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>
</head>
<body>
<div id="wrapper">
<example></example>
</div>
<script>
var app = new Vue({
el : '#wrapper'
});
</script>
</body>
</html>