You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
559 B
29 lines
559 B
var Vue = require('vue')
|
|
|
|
Object.keys(Vue).forEach(function(key) {
|
|
exports[key] = Vue[key]
|
|
})
|
|
|
|
exports.set = function(target, key, val) {
|
|
if (Array.isArray(target)) {
|
|
target.length = Math.max(target.length, key)
|
|
target.splice(key, 1, val)
|
|
return val
|
|
}
|
|
target[key] = val
|
|
return val
|
|
}
|
|
|
|
exports.del = function(target, key) {
|
|
if (Array.isArray(target)) {
|
|
target.splice(key, 1)
|
|
return
|
|
}
|
|
delete target[key]
|
|
}
|
|
|
|
exports.Vue = Vue
|
|
exports.Vue2 = undefined
|
|
exports.isVue2 = false
|
|
exports.isVue3 = true
|
|
exports.install = function(){}
|