20 lines
495 B
SCSS
20 lines
495 B
SCSS
|
// Components
|
||
|
@import 'modal';
|
||
|
@import 'tooltip';
|
||
|
|
||
|
:export {
|
||
|
// Any values that need to be accessible from JavaScript
|
||
|
// outside of a Vue component can be defined here, prefixed
|
||
|
// with `global-` to avoid conflicts with classes. For
|
||
|
// example:
|
||
|
//
|
||
|
// global-grid-padding: $size-grid-padding;
|
||
|
//
|
||
|
// Then in a JavaScript file, you can import this object
|
||
|
// as you would normally with:
|
||
|
//
|
||
|
// import design from '@design'
|
||
|
//
|
||
|
// console.log(design['global-grid-padding'])
|
||
|
}
|