Vue.js Loader
A wrapper loader of vue-loader for .js file
Install
requires vue-loader installed
npm i vuejs-loader
When do I need it?
If you want to use vue-loader but do not want to make .vue file and want to separate html,css,js files.
Usage
Use the loader either via your webpack config or inline.
Via webpack config
webpack.config.js
const path = moduleexports = module: rules: test: /\.js$/ include: path loader: 'vuejs-loader'
In your application
Inline
In your application
How it works
DIR
app/ - app.js - app.html - app.cssassets/ - ...
app.js
name: 'app' templateSrc: './app.html' styleSrc: './app.css'
imported component object equals below
app.vue
License
The MIT License (MIT)
Copyright (c) 2017 Elevista