vue2/src/directives/if.js

17 lines
151 B
JavaScript
Raw Normal View History

2014-08-17 06:06:37 +08:00
var _ = require('../util')
module.exports = {
bind: function () {
2014-08-18 02:13:52 +08:00
2014-08-17 06:06:37 +08:00
},
2014-08-18 02:13:52 +08:00
update: function () {
2014-08-17 06:06:37 +08:00
},
unbind: function () {
2014-08-18 02:13:52 +08:00
2014-08-17 06:06:37 +08:00
}
2014-08-18 02:13:52 +08:00
2014-08-17 06:06:37 +08:00
}