# http-vue-loader
Load .vue files directly from your html/js. No node.js environment, no build step.
## examples
`my-component.vue`
```vue
Hello {{who}}
```
`index.html`
```html
```
## More examples
using `httpVueLoader()`
```html
...
```
Then, in you `.vue` file:
```CoffeeScript
...
...
```
Example - Stylus:
```JavaScript
```
```stylus
...
...
```
Sass (SCSS) example. Since `sass.compile()` is asynchronous, a promise needs to be returned:
```JavaScript