#Getting started

## Install

```bash
  npm install --save vue-seo
```

Or you can the the main javascript file and host it wherever you want (preferably on a CDN).

__There are no dependency__  (except `vue>=1.0.21` of course)

## Load 

If you are using a bundler: 

```javascript

import VueSEO from 'vue-seo'
```

If you are loading script the "old" way:

```html
<script src="path_to_vue-seo.js"></script>
```

## Start

```javascript
  Vue.use(VueSEO, /* options here */);
```





