From 518c31edb09ff48c850a3670ff809208aa82e8e1 Mon Sep 17 00:00:00 2001 From: kaorun343 Date: Mon, 17 Jun 2019 21:25:58 +0900 Subject: [PATCH] Version 8.2.0 - Introduce PropSync - Introduce ReactiveProvide - Introduce ReactiveInject - Introduce Ref --- package.json | 2 +- src/vue-property-decorator.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 55d1b16..e5b843f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-property-decorator", - "version": "8.1.1", + "version": "8.2.0", "description": "property decorators for Vue Component", "main": "lib/vue-property-decorator.umd.js", "module": "lib/vue-property-decorator.js", diff --git a/src/vue-property-decorator.ts b/src/vue-property-decorator.ts index 7bdafc8..f50cc86 100644 --- a/src/vue-property-decorator.ts +++ b/src/vue-property-decorator.ts @@ -1,4 +1,4 @@ -/** vue-property-decorator verson 8.1.1 MIT LICENSE copyright 2018 kaorun343 */ +/** vue-property-decorator verson 8.2.0 MIT LICENSE copyright 2019 kaorun343 */ /// 'use strict' import Vue, { PropOptions, WatchOptions } from 'vue'