mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-16 19:21:07 +00:00
29 lines
544 B
Vue
29 lines
544 B
Vue
<script>
|
|
import Vue from 'vue';
|
|
import CoreTheme from './stylesheets/core.theme';
|
|
import clickaway from './directives/clickaway';
|
|
|
|
window.VueMaterial = {
|
|
styles: [CoreTheme]
|
|
};
|
|
|
|
Vue.directive('onClickaway', clickaway);
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
/* Common mixins */
|
|
@import './stylesheets/utils/mixins';
|
|
|
|
|
|
/* Commons */
|
|
@import './stylesheets/utils/commons';
|
|
|
|
|
|
/* Variables */
|
|
@import './stylesheets/variables';
|
|
|
|
|
|
/* Core Styles */
|
|
@import './stylesheets/structure';
|
|
@import './stylesheets/type';
|
|
</style>
|