Giter Club home page Giter Club logo

Comments (4)

nguyenvanduocit avatar nguyenvanduocit commented on July 23, 2024

I think it's better to copy the code and paste to your project.
Sorry about that.

from vue-loading-spinner.

rbayley avatar rbayley commented on July 23, 2024

Hi @nguyenvanduocit

You can, using CSS variables (more precisely called CSS custom properties).

export default {
  props: {
    size: {
      default: '40px'
    },
    background: {
      default: '#41b883'
    }
  },
  computed: {
    styles () {
      return {
        width: this.size,
        height: this.size,
        '--my-var-color':  this.background
      }
    }
  }
}

Then on your style tag you simply reference you the --var you have set with your computed property.
(for simplicity sake I am only pasting code relevant to the answer).
and voilà!! :)

<style lang="scss" scoped>

    &:after {
      background: var(--my-var-color);
    }
  }
</style>

I hope this helps you keep this great component active again!

regards

from vue-loading-spinner.

zhanghaifei1997 avatar zhanghaifei1997 commented on July 23, 2024

Is there any development document?
I want to use it in my own project, but I find it doesn't work. I want to add this loading effect when the pop-up window appears.

from vue-loading-spinner.

zhanghaifei1997 avatar zhanghaifei1997 commented on July 23, 2024

Is there any development document?
I want to use it in my own project, but I find it doesn't work. I want to add this loading effect when the pop-up window appears.

from vue-loading-spinner.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.