xue-vue2
v2.1.5
Published
a simple vue
Downloads
4
Readme
euv
why euv? because:
'vue'.split('').sort().join('') // euv
source:
'node'.split('').sort().join('') // deno
Quick Start
目前还有
case
没有测试
安装
npm install
运行
npm run dev
目前支持功能
- [x]
虚拟DOM
- [x]
Diff更新
- [x]
{{ data }}
or{{ data + 'test' }}
or{{ fn(data) }}
- [x]
v-for
//v-for="(item, index) in list"
orv-for="(item, index) in 10"
orv-for="(item, index) in 'string'"
- [x]
v-if
v-else-if
v-else
- [x]
v-show
- [x]
v-html
- [x]
v-model
- [x]
@click
v-on:click
事件(支持绑定其他事件)@click="fn('a',$event)"
@click="fn"
@click="show = false"
@click="function(){console.log(1)}"
- [x]
methods
方法 - [x]
computed
计算属性 - [x]
watch
监听 - [x]
beforeCreate
、created
、beforeMount
、mounted
、beforeUpdate
、updated
- [x]
:class
- [x]
:style
- [x]
$nextTick