1.0.3 • Published 1 month ago

vue-plugin-jumpcard v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

JumpCard

JumpCard is a fully open source component for vue3 that allows you to use it on any project (including commercial ones).It is based on element-plus for secondary packaging.It can only be used in vue3, vue2 will not be allowed.

You can import our plugin in these different ways, but you should install it first.

npm install vue-plugin-jumpcard

How to import it?

import { createApp } from 'vue'
import JumpCard from 'vue-plugin-jumpcard'

const app = createApp({})

app.use(Jumpcard)

How to use it on your project?

<template>
    <InternalJumpCard 
        header="Title"
        text="main info"
        buttontext="text on button"
        link="/path/index.html"
        shadow="hover"
    />
    <ExternalJumpCard 
        header="Title"
        text="main info"
        buttontext="text on button"
        link="https://www.example.com/path/index.html"
        shadow="hover"
    />
</template>
opinionnote
headerIf you don't fill it out, it won't show up.
textIf you don't fill it in, it will show up blank.
buttontext && linkThey must both be present or the button will not be displayed.
shadowThe default value is hover and you can set it to always or never.Which determines when the card's shadow is displayed.
1.0.3

1 month ago

1.0.2

3 months ago

1.0.1

3 months ago

1.0.0

3 months ago