🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

v-css-var

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v-css-var

use CSS Variables by vue directive

1.0.1
Source
npm
Version published
Weekly downloads
13
Maintainers
1
Weekly downloads
 
Created
Source

v-css-var

use CSS Variables by vue directive

install the package

npm i v-css-var

use it in main.js

import cssVar from 'v-css-var'
Vue.use(cssVar,{
    prefix: true // auto add the prefix like --
})

basic use

<template>
  <div v-css-var="var"></div>
</template>
<script>
export default {
  data(){
    return {
      var:{
        a:'1px'
      }
    }
  }
}
</script>
<style>
div{
  height: var(--a);
}
</style>

It will be transfed as

<div style="--a:'1'"></div>

If you want share the vars to all, you can add it to the html element

<template>
  <div v-css-var.root="var"></div>
</template>

It will be transfed as

<html style="--a:'1px'">
    <body>
        <div></div>
    </body>
</html>

TO DO

  • remove the css Variables
  • write the test

Keywords

vue

FAQs

Package last updated on 16 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts