From 90c493901ca1a3d5c5d93d8dd4721bb9ab6cbdea Mon Sep 17 00:00:00 2001 From: cristijora Date: Thu, 27 Apr 2017 19:54:54 +0300 Subject: [PATCH] Fix readme (global registration typo) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03e3efc..fe4badd 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,9 @@ Download the css and js files from `dist` folder or reference them directly from ## Component registration ```js //global registration -import 'vue-form-wizard' +import VueFormWizard from 'vue-form-wizard' import 'vue-form-wizard/dist/vue-form-wizard.min.css' -Vue.use(VueTabWizard) +Vue.use(VueFormWizard) //local registration import {FormWizard, TabContent} from 'vue-form-wizard'