mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-10 08:14:52 +00:00
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
import Vue from 'vue/dist/vue.min';
|
|
import MdInkRipple from './mdInkRipple';
|
|
import MdButton from './mdButton';
|
|
import MdIcon from './mdIcon';
|
|
import MdBottomBar from './mdBottomBar';
|
|
|
|
Vue.use(MdInkRipple);
|
|
Vue.use(MdButton);
|
|
Vue.use(MdIcon);
|
|
Vue.use(MdBottomBar);
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
data: {
|
|
disabled: false
|
|
},
|
|
methods: {
|
|
clickAction() {
|
|
this.disabled = !this.disabled;
|
|
}
|
|
}
|
|
});
|