@modyo/cli
Version:
Modyo Command Line Interface
19 lines (15 loc) • 341 B
JavaScript
/* eslint import/no-unresolved: [0] */
/* eslint no-new: [0] */
import Vue from 'vue';
import App from './App';
import store from './store';
import '../shared/vue_filters';
VeeValidate.Validator.extend('rut', RutValidator);
Vue.use(VeeValidate, {
locale: 'es',
});
new Vue({
el: '#{{widget_key}}',
store,
render: h => h(App),
});