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.

22 lines
572 B

2 months ago
  1. import * as Vue from 'vue'
  2. declare const isVue2: boolean
  3. declare const isVue3: boolean
  4. declare const Vue2: any
  5. declare const install: (vue?: any) => void
  6. /**
  7. * @deprecated To avoid bringing in all the tree-shakable modules, this API has been deprecated. Use `Vue2` or named exports instead.
  8. * Refer to https://github.com/vueuse/vue-demi/issues/41
  9. */
  10. declare const V: typeof Vue
  11. export function set<T>(target: any, key: any, val: T): T
  12. export function del(target: any, key: any): void
  13. export * from 'vue'
  14. export {
  15. V as Vue,
  16. Vue2,
  17. isVue2,
  18. isVue3,
  19. install,
  20. }