Integrate sass and scss with vue single-file components for Meteor
This meteor package adds sass support in your single-file .vue
components.
Installation
meteor add akryum:vue-sass
Usage
1<style lang="scss"> 2$message-color: grey; 3 4.message { 5 color: $message-color; 6} 7</style> 8 9<style lang="sass"> 10$message-color: grey 11 12.message 13 color: $message-color 14</style>
You can import files with absolute or relative path:
1<style scoped lang="sass"> 2// Absolute path in the project 3@import ~imports/ui/colors.sass 4// Relative path 5@import ../../imports/ui/colors.sass 6</style>
LICENCE ISC - Created by Guillaume CHAU (@Akryum)