mirror of https://github.com/vuejs/vitepress
fix(build): ship built-in vue-demi to avoid resolution issues (#3680)
parent
05061bd3d2
commit
5d3cb96ac3
@ -0,0 +1,34 @@
|
|||||||
|
/**
|
||||||
|
* vue-demi v0.14.7
|
||||||
|
* Copyright (c) 2020-present, Anthony Fu
|
||||||
|
* @license MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as Vue from 'vue'
|
||||||
|
|
||||||
|
var isVue2 = false
|
||||||
|
var isVue3 = true
|
||||||
|
var Vue2 = undefined
|
||||||
|
|
||||||
|
function install() {}
|
||||||
|
|
||||||
|
export function set(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
|
||||||
|
}
|
||||||
|
|
||||||
|
export function del(target, key) {
|
||||||
|
if (Array.isArray(target)) {
|
||||||
|
target.splice(key, 1)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
delete target[key]
|
||||||
|
}
|
||||||
|
|
||||||
|
export * from 'vue'
|
||||||
|
export { Vue, Vue2, isVue2, isVue3, install }
|
Loading…
Reference in new issue