You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Install a Vue.js plugin. If the plugin is an Object, it must expose an install method. If it is a function itself, it will be treated as the install method. The install method will be called with Vue as the argument.
86
+
// When this method is called on the same plugin multiple times, the plugin will be installed only once.
87
+
funcUse(plugininterface{}) {
88
+
vue.Call("use", plugin)
89
+
}
90
+
91
+
// Vue.mixin( mixin )
92
+
//
93
+
// Arguments:
94
+
//
95
+
// {Object} mixin
96
+
// Usage:
97
+
//
98
+
// Apply a mixin globally, which affects every Vue instance created afterwards. This can be used by plugin authors to inject custom behavior into components. Not recommended in application code.
99
+
funcMixin(mixininterface{}) {
100
+
vue.Call("mixin", mixin)
101
+
}
102
+
103
+
// Vue.compile( template )
104
+
//
105
+
// Arguments:
106
+
//
107
+
// {string} template
108
+
// Usage:
109
+
//
110
+
// Compiles a template string into a render function. Only available in the standalone build.
0 commit comments