github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/themes/wind/static/libs/vue-1.0.24/src/directives/public/index.js (about) 1 // text & html 2 import text from './text' 3 import html from './html' 4 // logic control 5 import vFor from './for' 6 import vIf from './if' 7 import show from './show' 8 // two-way binding 9 import model from './model/index' 10 // event handling 11 import on from './on' 12 // attributes 13 import bind from './bind' 14 // ref & el 15 import el from './el' 16 import ref from './ref' 17 // cloak 18 import cloak from './cloak' 19 20 // must export plain object 21 export default { 22 text, 23 html, 24 'for': vFor, 25 'if': vIf, 26 show, 27 model, 28 on, 29 bind, 30 el, 31 ref, 32 cloak 33 }