Vue (讀音 /vjuː/,相似於 view) 是一套用於構建用戶界面的漸進式框架。
特色: 易用,靈活,高效 漸進式框架javascript
能夠隨意組合須要用到的模塊 vue + components + vue-router + vuex + vue-cli
框架與庫之間最本質區別在於控制權:you call libs, frameworks call youhtml
Vue屬於框架vue
在傳統的mvc中除了model和view之外的邏輯都放在了controller中,致使controller邏輯複雜難以維護,在mvvm中view和model沒有直接的關係,所有經過viewModel進行交互java
Vue是MVVM模式node
容許開發者聲明式地將 DOM 綁定至底層 Vue 實例的數據。在使用數據前須要先聲明vue-router
<div id="app"> {{ 1+1 }} {{ msg == 'hello'?'yes':'no' }} {{ {name:1} }} </div> <script src="./node_modules/vue/dist/vue.js"></script> <script> let vm = new Vue({ el:'#app', data:{ msg:'hello' } }) </script>
Vue中使用Object.defineProperty
從新將對象中的屬性定義,若是是數組的話須要重寫數組原型上的方法vuex
function notify() { console.log('視圖更新') } let data = { name: 'jw', age: 18, arr: [1,2,3] } // 重寫數組的方法 let oldProtoMehtods = Array.prototype; let proto = Object.create(oldProtoMehtods); ['push', 'pop', 'shift', 'unshift'].forEach(method => { proto[method] = function (...args) { let inserted; switch (method) { case 'push': case 'unshift': inserted = args; break; } observerArray(inserted) notify(); oldProtoMehtods[method].call(this, ...args) } }) function observerArray(obj) { // 觀察數組中的每一項 for (let i = 0; i < obj.length; i++) { observer(obj[i]); } } function observer(obj) { if(typeof obj !== 'object'){ return obj } if (Array.isArray(obj)) { obj.__proto__ = proto observerArray(obj); }else{ for (let key in obj) { defineReactive(obj, key, obj[key]); } } } function defineReactive(obj, key, value) { observer(value); // 再一次循環value Object.defineProperty(obj, key, { // 不支持數組 get() { return value; }, set(val) { notify(); observer(val); value = val; } }); } observer(data); data.arr.push({name:'jw'}) console.log(data.arr);
缺陷vue-cli
vm.$set
和vm.$delete
方法強制添加/刪除響應式數據在vue中 指令 (Directives) 是帶有 v- 前綴的特殊特性,主要的功能就是操做DOMexpress
<div v-once>{{state.count}} </div>
永遠不要對用戶輸入使用v-html,可能會致使xss攻擊數組
<div v-html="text"></div>
動態綁定屬性須要使用v-bind
進行綁定
<img v-bind:src="src">
可使用:來簡寫
v-bind
<template v-for="(fruit,index) in fruits" > <li :key="`item_${index}`">{{fruit}}</li> <li :key="`fruit_${index}`">{{fruit}}</li> </template>
多個元素循環時外層須要增長template
標籤,須要給真實元素增長key
,並且key
不能重複,儘可能不要採用索引做爲key
的值
舉個key
值的例子:
v-if
能夠切換DOM
元素是否存在,而且v-if
爲false
時內部指令不會被執行 v-show
能夠控制元素的顯示及隱藏,主要控制的是元素樣式
雙向數據綁定
<input type="text" :value="value" @input="input"> <input type="text" v-model="value">
<select v-model="select"> <option v-for="fruit in fruits" :value="fruit"> {{fruit}} </option> </select>
<input type="radio" v-model="value" value="男"> <input type="radio" v-model="value" value="女">
<input type="checkbox" v-model="checks" value="游泳" > <input type="checkbox" v-model="checks" value="健身">
<input type="text" v-model.number="value"> <input type="text" v-model.trim="value">
編寫一個自定義指令
鉤子函數bind,inserted,update
<input type="text" v-focus.color="'red'"> Vue.directive('focus',{ inserted:(el,bindings)=>{ let color = bindings.modifiers.color; if(color){ el.style.boxShadow = `1px 1px 2px ${bindings.value}` } el.focus(); } });
clickoutside指令
<div v-click-outside="change"> <input type="text" @focus="flag=true" > <div v-show="flag"> contenter </div> </div> <script> let vm = new Vue({ el:'#app', data:{ flag:false }, methods:{ change(){ this.flag = false } }, directives:{ 'click-outside'(el,bindings,vnode){ document.addEventListener('click',(e)=>{ if(!el.contains(e.target,vnode)){ let eventName = bindings.expression; vnode.context[eventName]() } }) } } }) </script>