2.0.5 • Published 9 months ago

@ginger-tek/picovue v2.0.5

Weekly downloads
-
License
GPL-3.0-only
Repository
github
Last release
9 months ago

How to Use

You can use PicoVue in a compiled project via npm, such as with Vite, or in any HTML with the Vue IIFE global build via CDN

NPM + Vite Build

npm install @ginger-tek/picovue

Import individual components as needed

import { PvTable } from '@ginger-tek/picovue/PvTable.vue'
<PvTable :items="..."></PvTable>

CDN + IIFE Build

<script src="https://unpkg.com/vue/dist/vue.global.js"></script>
<script src="https://unpkg.com/@ginger-tek/picovue/picovue.global.js"></script>
<script src="/main.js">
Vue.createApp({
  template: `<pv-table :items="items"></pv-table>`,
  setup() {
    const items = Vue.ref([])
    return { items }
  }
})
  .use(PicoVue)
  .mount('#app')
</script>

Documentation

2.0.3

10 months ago

2.0.2

10 months ago

2.0.5

9 months ago

2.0.1

10 months ago

1.4.0

10 months ago

2.0.0

10 months ago

1.3.3

10 months ago

1.3.2

11 months ago

1.3.0

11 months ago

1.2.0

12 months ago

1.1.2

12 months ago

1.1.1

12 months ago

1.1.0

12 months ago

1.0.0

1 year ago