1.1 第一个Vue程序
一、基础内容
<body> <div id="app">{{message}}</div> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> <script> var vm = new Vue({ el: '#app', data: { message: 'hello world' } }) </script> </body>
二、部分常用标签
Last updated