Select Git revision
Forked from
project / webpack_vuejs
2 commits behind, 1 commit ahead of the upstream repository.

Blazej Owczarczyk authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
README.md 580 B
Webpack Vue.js
Provides Vue.js configuration for the webpack module.
Dependencies
Installation
yarn add vue vue-loader vue-template-compiler
Example usage
module.libraries.yml
test:
webpack: true
js:
index.js: {}
index.js
import Vue from 'vue';
import Component from './Component.vue';
Vue.component('test-component', Component);
const app = new Vue({
el: '#page',
template: '<test-component />',
});