Skip to content

Commit

Permalink
Issue with Class names getting cropped in production.
Browse files Browse the repository at this point in the history
  • Loading branch information
SirAuron committed Apr 26, 2019
1 parent d123bea commit ab1c9a7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/ketchup-vue/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Select, Option } from 'element-ui';
import SmeupFld from "./src/components/SmeupFld.vue";
import SmeupLabel from "./src/components/SmeupLabel.vue";
import SmeupMatrix from "./src/components/comp/mat/SmeupMatrix.vue";
import MAT from "./src/components/MAT.vue";
import KetchupMatrix from "./src/components/KetchupMatrix.vue";

// This is necessary to import correct style for element-ui library
import 'element-ui/lib/theme-chalk/index.css'
Expand All @@ -25,10 +25,12 @@ import 'material-design-icons-iconfont'
function install(Vue, options = {}) {
Vue.use(Vuetify);

console.log(SmeupMatrix, );

Vue.component(SmeupFld.name, SmeupFld);
Vue.component(SmeupLabel.name, SmeupLabel);
Vue.component(SmeupMatrix.name, SmeupMatrix);
Vue.component(MAT.name, MAT);
Vue.component('SmeupMatrix', SmeupMatrix);
Vue.component('KetchupMatrix', KetchupMatrix);

Vue.component('el-select', Select);
Vue.component('el-option', Option);
Expand All @@ -52,5 +54,5 @@ export {
SmeupFld,
SmeupLabel,
SmeupMatrix,
MAT
KetchupMatrix
};

0 comments on commit ab1c9a7

Please sign in to comment.