2.3.2 • Published 8 months ago
@ginger-tek/picovue v2.3.2
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/picovueImport 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.3.0
9 months ago
2.2.0
9 months ago
2.1.1
9 months ago
2.3.2
8 months ago
2.3.1
9 months ago
2.0.11
1 year ago
2.0.7
1 year ago
2.0.12
1 year ago
2.0.6
1 year ago
2.0.9
1 year ago
2.0.10
1 year ago
2.0.8
1 year ago
2.1.0
9 months ago
2.0.3
1 year ago
2.0.2
1 year ago
2.0.5
1 year ago
2.0.1
1 year ago
1.4.0
1 year ago
2.0.0
1 year ago
1.3.3
1 year ago
1.3.2
1 year ago
1.3.0
1 year ago
1.2.0
1 year ago
1.1.2
2 years ago
1.1.1
2 years ago
1.1.0
2 years ago
1.0.0
2 years ago