New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ispa-element

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ispa-element

A Component Library for VueJs (Vue 3) base on Tailwind Css.

  • 0.7.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

iSPA Element UI

A Component Library for VueJs (Vue 3) base on Tailwind Css.

Downloads Version lerna

Quick Start

To use it, open up your terminal in the desired directory and run the following command:

npm install ispa-element

Then add the library into your main js project

import {createApp} from 'vue'
import iSPAElement from 'ispa-element'

const app = createApp(App)
app.use(iSPAElement).mount('#app')

Module Loader

This is the recommended way if your application uses vue-cli or has a webpack based build with vue-loader configured. Import the components as .vue files for seamless integration within your project where path of each component is available at the "import" section of a component documentation.

impot { IButton } from 'ispa-element'

In the next step, register the component with the tag name you'd like to use.

//  In app.js
import {createApp} from 'vue'
const app = createApp(App)

app.component(IButton.name, IButton)
// OR app.component('i-button', IButton)

app.mount('#app')

//  In component.vue
export default {
  components: { IButton }
}

::: tip Note You can use any tag name, but notes these tag name maybe conflict with others tag name, so make sure it's unique tag name to use. :::

Documents

Please visit here to read full documents of iSPA Element.

Special Thanks

Thanks for amazing library PrimeVue and Element UI, our very first version has been inspired from these library.

Milestone

  • Card Component
  • Loading Component/Directives
  • Nav/Tabs Component
  • Progress bar Component
  • Dropdown Component
  • Badge Component (2020-12-26)
  • Divider Component (2020-12-20)
  • Switch Component (2020-12-20)
  • Alert Component (2020-12-18)
  • Form/Input Component (2020-12-16)
  • Button Component (2020-12-09)

CHANGELOG

You can follow Change Logs by click here (CHANGELOG.md)

Versioning

Maintained under the Semantic Versioning guidelines.

License

MIT © Malayvuong

Wanna support?

If you like this project and want to contribute us, then you can send us an email via malayvuong@gmail.com for more informations.

⬆ back to top

Keywords

FAQs

Package last updated on 13 Jan 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc