@keeer/material-components-vue
Version:
Material Design components for Vue.js
16 lines (12 loc) • 356 B
JavaScript
import TopAppBar from './TopAppBar.vue'
import TopAppBarFixedAdjust from './TopAppBarFixedAdjust.vue'
import './styles.scss'
import { initPlugin } from '../'
const plugin = {
install (vm) {
vm.component('m-top-app-bar', TopAppBar)
vm.component('m-top-app-bar-fixed-adjust', TopAppBarFixedAdjust)
}
}
export default plugin
initPlugin(plugin)