1.0.5 • Published 2 years ago

zondicons-vue v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

ZondIcons Vue.js

Zondicons components for Vue.js.

Icons preview

See icons preview

Instalation

Run the following commande in the terminal to install the package :

$ npm i zondicons-vue

How to use

// main.js

import { createApp } from  "vue";
import App from  "./App.vue";
import zondicons from  "zondicons-vue";

const app = createApp(App)

// tell Vue.js to use the plugin
app.use(zondicons)

app.mount("#app"); 

In template write the icon name in pascal case, eg: arrow-left becomes ArrowLeft

// App.vue
    
<template>
	<ArrowLeft />  
</template>
1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago