Understand the Vue framework in three minutes
##1. Basic introduction to Vue
1.vue is a progressive JavaScript framework2. Author: You Yuxi (a Chinese former Google engineer)3. Function: dynamically build user interface2: Features of Vue
1. Follow the MVVM pattern (m->model (data object) v->view (view) vm->view model)2. The coding is simple, the size is small, and the running efficiency is high, suitable for mobile/PC terminals3. It only focuses on the UI, and can easily introduce Vue plug-ins or other third-party library development projectsVue extension plug-in:
3. Vue writes "Hello vue"
1.Introduce vue.js2.Create vue object3.Two-way data binding4.Display dataCode display:<p id="app"> //3.双向数据绑定 <input type="text" v-model="username"> //4.显示数据 <p>Hello {{msg}}</p> </p> //1.引入vue.js <script type="text/javascript" src="../js/vue.js"></script> <script type="text/javascript"> //2.创建vue对象 var vm = new Vue({ el:"#app", data:{ msg:'vue' } })
JS Tutorial"
The above is the detailed content of Learn about the Vue framework in three minutes. For more information, please follow other related articles on the PHP Chinese website!