-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (22 loc) · 835 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// manipulation directives
exports.text = require('./text')
exports.html = require('./html')
exports.attr = require('./attr')
exports.show = require('./show')
exports['class'] = require('./class')
exports.el = require('./el')
exports.ref = require('./ref')
exports.cloak = require('./cloak')
exports.style = require('./style')
exports.partial = require('./partial')
exports.transition = require('./transition')
// event listener directives
exports.on = require('./on')
exports.model = require('./model')
// child vm directives
exports.component = require('./component')
exports.repeat = require('./repeat')
exports['if'] = require('./if')
// child vm communication directives
exports['with'] = require('./with')
exports.events = require('./events')