vue-class-component
Advanced tools
Comparing version 6.3.2 to 7.0.0
@@ -8,1 +8,9 @@ import Vue, { ComponentOptions } from 'vue'; | ||
}; | ||
import { PluginFunction, PluginObject } from 'vue/types/plugin'; | ||
declare module 'vue/types/vue' { | ||
interface VueConstructor { | ||
use<T>(plugin: PluginObject<T> | PluginFunction<T>, options?: T): any; | ||
use(plugin: PluginObject<any> | PluginFunction<any>, ...options: any[]): any; | ||
mixin(mixin: VueConstructor | ComponentOptions<Vue>): any; | ||
} | ||
} |
{ | ||
"name": "vue-class-component", | ||
"version": "6.3.2", | ||
"version": "7.0.0", | ||
"description": "ES201X/TypeScript class decorator for Vue components", | ||
@@ -5,0 +5,0 @@ "main": "dist/vue-class-component.common.js", |
@@ -92,3 +92,3 @@ # vue-class-component | ||
@Component | ||
export class MyMixin extends Vue { | ||
export default class MyMixin extends Vue { | ||
mixinValue = 'Hello' | ||
@@ -95,0 +95,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46441
843