Skip to content

akanix42/vue-css-modules

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This package enables integration between akryum:vue-component and nathantreid:css-modules.

Installation

Prerequisites:

meteor add akyrum:vue-component

Install using Meteor's package management system:

meteor add nathantreid:vue-css-modules

Usage:

Add the module attribute to any <style> tag in your component file and access the styles via the $style property:

<style module>
/* Will only be applied to this component <a> elements */
.red {
   color: red;
   composes: bold from '/imports/ui/types.css';
}
</style>

<template>
  <div :class="$style.red">Red Text</div>
</template>

<script>
  export default {
    created() {
      console.log(this.$style.red);
    }
  }
</script>

Composing from other files

Composition from other .vue files currently doesn't work. To enable composition from other css module files (.css, .scss, etc) install nathantreid:css-modules.

Package Options

CSS modules compilation is handled by nathantreid:css-modules. Please see that package for configuration information. Options from the nathantreid:css-modules package.json configuration will also be applied to these. Note that if you are using preprocessors such as less, scss, etc with nathantreid:css-modules, options that affect transpilation (such as globalVariables) will not be applied to your .vue styles.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published