From a51edf5ea2eb04de6d476d2e6569f9a234876c91 Mon Sep 17 00:00:00 2001 From: Declan de Wet Date: Tue, 8 Nov 2016 08:06:04 +0200 Subject: [PATCH] more clear instructions in step 1 for non-ssr users --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8773ccb..6396a42 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Use the links below - if you want a previous version, check the instructions at ## Step 1: Preparing the plugin > This step is optional if you don't need SSR and `Vue` is available as a global variable. `vue-meta` will install itself in this case. -In order to use this plugin, you first need to pass it to `Vue.use` in a file that runs both on the server and on the client before your root instance is mounted. If you're using [`vue-router`](https://github.com/vuejs/vue-router), then your main `router.js` file is a good place: +In order to use this plugin, you first need to pass it to `Vue.use` - if you're not rendering on the server-side, your JS entry file will suffice. If you are rendering on the server, then place it in a file that runs both on the server and on the client before your root instance is mounted. If you're using [`vue-router`](https://github.com/vuejs/vue-router), then your main `router.js` file is a good place: **router.js:** ```js