0.0.19 • Published 1 year ago

arveui v0.0.19

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Arveui

Yet anthor component library with Vue3.

Quick start

You need Vue.js version 3.2+

1. Install via npm

npm install arveui

2. Import

You can import the library depending on the project needs. Import all components globaly, import single components globaly or import individual component where it's used.

  • Declare all components globaly.

    main.ts

    import VueLibraryLoader from 'arveui';
    
    const app = createApp(App);
    app.use(VueLibraryLoader);
  • Declare global components (Treeshaking).

    main.ts

    import { HelloWorld } from 'arveui';
    
    const app = createApp(App);
    app.component('HelloWorld', HelloWorld);
  • Declare components localy.

    *.vue

    <script setup lang="ts">
    import { HelloWorld } from 'arveui';
    </script>

3. Use components

Implement each component normally on the template section *.vue

<template>
<HelloWorld msg="Message test" color="green" />
</template>
0.0.19

1 year ago

0.0.18

1 year ago

0.0.17

1 year ago

0.0.16

1 year ago

0.0.15

1 year ago

0.0.14

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago