![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ispa-element
Advanced tools
A Component Library for VueJs (Vue 3) base on Tailwind Css.
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')
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. :::
Please visit here to read full documents of iSPA Element.
Thanks for amazing library PrimeVue and Element UI, our very first version has been inspired from these library.
You can follow Change Logs by click here (CHANGELOG.md)
Maintained under the Semantic Versioning guidelines.
If you like this project and want to contribute us, then you can send us an email via malayvuong@gmail.com for more informations.
FAQs
A Component Library for VueJs (Vue 3) base on Tailwind Css.
We found that ispa-element demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.