🚀

Vueことはじめ

2021/06/23に公開

v2系での書き方

<html>
    <body>
        <div id="app">
	    {{ message }}
	</div>
	
        <script src="../vue.min.js"></script>
	<script>
	const app = new Vue({
	    el: '#app',
	    data () {
	        return {
		    message: 'hello'
		}
	    }
	})
	</script>
    </body>
</html>

Discussion