From 4961374592a21172b00312527a49f8523c4873a2 Mon Sep 17 00:00:00 2001 From: Shinda Singh Date: Mon, 13 Mar 2017 12:49:30 -0400 Subject: [PATCH] Update README.md fixed component registration syntax. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 56ff515..4627661 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Register the component ```js import Vue from 'vue' import vSelect from 'vue-select' -Vue.component(vSelect) +Vue.component('v-select', vSelect) ``` You may now use the component in your markup