From 7ecd7be11dd34edc4fbfc7d1c6b1c530f55afd85 Mon Sep 17 00:00:00 2001 From: INOUE Takuya Date: Sat, 6 Apr 2019 12:11:14 +0900 Subject: [PATCH] fix usage in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3b8d3e..16ba267 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ There are following decorators: ## Usage ```typescript -import { Component, Inject, Model, Prop, Vue, Watch } from 'nuxt-property-decorator' +import { Component, Inject, Model, Prop, Provide, Vue, Watch } from 'nuxt-property-decorator' const s = Symbol('baz') @@ -205,7 +205,7 @@ export const MyComponent = Vue.extend({ foo: this.foo, bar: this.baz } - } + }, methods: { onChildChanged(val, oldVal) { }, onPersonChanged(val, oldVal) { }