Files
dancefinder-app/plugins/iview.js
T

10 lines
291 B
JavaScript
Raw Normal View History

2019-01-15 13:21:24 +01:00
import Vue from 'vue';
import iView from 'iview';
import locale from 'iview/dist/locale/en-US';
// add exceptions for these since they conflict with the linting if we use them out of the box
Vue.component('i-row', iView.Row);
Vue.component('i-col', iView.Col);
Vue.use(iView, { locale });