From 80892422ecff0dec5168bd02c8cfda3bb662a5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=A9rio=20Vieira?= Date: Sun, 28 Jan 2018 13:12:20 -0200 Subject: [PATCH] Fix package name and add install guide (#1) --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 20f892a..7469c69 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,20 @@ vue-promised [![Build Status](https://img.shields.io/circleci/project/posva/vue- Transform your Promises into components +## Installation + +```bash +npm install --save vue-promised +# or +yarn add vue-promised +``` + ## Usage Import the component to use it ```js -import Promised from 'vue-promise-blocks' +import Promised from 'vue-promised' Vue.component('Promised', Promised) ```