17 lines
434 B
HTML
17 lines
434 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||
|
<title>Vue Test</title>
|
||
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="counter">
|
||
|
<!-- <p>Counter: {{ count }}></p> -->
|
||
|
<!-- <button v-on:click="showMessage">Show!</button> -->
|
||
|
</div>
|
||
|
<script src='bundle.js'></script>
|
||
|
</body>
|
||
|
</html>
|