Coder Social home page Coder Social logo

vue3-web-component-cards's Introduction

custom-cards

Vite, Vue3 web-component custom-cards

(standalone web component made with Vue3 & Vite)

Generic badge Generic badge Generic badge Generic badge Generic badge


Usage

In HTML header:
<script type="module" crossorigin src="/cards.js"></script>
<link rel="modulepreload" href="/vue.js" />
Place component with or without attributes (named slot can be passed):
<custom-cards>
</custom-cards>
Reference component:
const cards = document.querySelector('custom-cards')
* Set component attribute cards-data as JSON object
with following properties:
  • title (String)
  • labels (String - array of labels)
  • button (String - button, link)>
example:
const td = { title: 'some title', 
            labels: '['name', 'value']', 
            button: 'link' }
document.querySelector('custom-cards').setAttribute('cards-data', JSON.stringify(td))
* Styles can be set by setting attribute toast-style
with following properties:
  • decoration (Boolean)
  • colorized (Boolean)
  • color (String - any color)
  • font (String - any font-family)
example:
const ts = { decoration: false, 
            colorized: false, 
            color: "#ffffff", 
            font: "'Open Sans', sans-serif" }
document.querySelector('custom-cards').setAttribute('cards-style', JSON.stringify(ts))

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

vue3-web-component-cards's People

Contributors

nijepa avatar

Watchers

 avatar

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.