File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const O_C = require('./apis/optionscomposition')
8
8
const O_M = require ( './apis/optionsmisc' )
9
9
const I_P = require ( './apis/instanceproperties' )
10
10
const I_D = require ( './apis/instancedata' )
11
+ const I_E = require ( './apis/instanceevents' )
11
12
12
13
13
14
const GlobalConfig = [
@@ -111,6 +112,13 @@ const InstanceData = [
111
112
I_D . VM_$DELETE
112
113
]
113
114
115
+ const InstanceEvents = [
116
+ I_E . VM_$ON ,
117
+ I_E . VM_$ONCE ,
118
+ I_E . VM_$OFF ,
119
+ I_E . VM_$EMIT
120
+ ]
121
+
114
122
115
123
module . exports = {
116
124
GlobalConfig,
@@ -122,5 +130,6 @@ module.exports = {
122
130
OptionsComposition,
123
131
OptionsMisc,
124
132
InstanceProperties,
125
- InstanceData
133
+ InstanceData,
134
+ InstanceEvents
126
135
}
Original file line number Diff line number Diff line change
1
+ const chalk = require ( 'chalk' )
2
+ const custom = require ( '../customcolors' )
3
+ const colorComment = custom . colorComment
4
+ const colorPrimitive = custom . colorPrimitive
5
+ const colorError = custom . colorError
6
+ const colorArgs = custom . colorArgs
7
+
8
+ const VM_$ON = { }
9
+ const VM_$ONCE = { }
10
+ const VM_$OFF = { }
11
+ const VM_$EMIT = { }
12
+
13
+ module . exports = {
14
+ VM_$ON,
15
+ VM_$ONCE,
16
+ VM_$OFF,
17
+ VM_$EMIT
18
+ }
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const oc = api.OptionsComposition
14
14
const om = api . OptionsMisc
15
15
const ip = api . InstanceProperties
16
16
const id = api . InstanceData
17
+ const im = api . InstanceEvents
17
18
18
19
19
20
V . delimiter ( 'vue-help$' ) . show ( )
You can’t perform that action at this time.
0 commit comments