0.13.0 • Published 12 months ago
nextcloud-vue-collections v0.13.0
Nextcloud Vue component for collaboration collections
Provides a vue component for Nextcloud projects introduced in Nextcloud 16 to be integrated in apps. Projects is naming for user-facing elements, while collections is used internally since it was renamed afterwards.
Installation
npm install --save nextcloud-vue-collections
Usage
This library requires your app to have the following dependencies installed:
- vue 2.7.16
After that you can use the collection list component like this:
<template>
<collection-list
v-if="resourceId"
type="myresourcetype"
:id="resourceId"
:name="resourceName"
/>
</template>
<script>
import { CollectionList } from 'nextcloud-vue-collections'
export default {
name: 'CollectionsView',
components: {
CollectionList
},
computed: {
resourceId() {
return 1
},
resourceName() {
return 'My resource'
}
}
}
</script>
0.13.0
12 months ago
0.12.0
1 year ago
0.11.1
2 years ago
0.11.0
2 years ago
0.10.0
3 years ago
0.9.0
5 years ago
0.8.1
5 years ago
0.8.0
5 years ago
0.7.2
5 years ago
0.4.2
5 years ago
0.5.7
6 years ago
0.7.1
6 years ago
0.4.1
6 years ago
0.7.0
6 years ago
0.6.0
6 years ago
0.5.6
6 years ago
0.5.5
6 years ago
0.5.4
6 years ago
0.5.2
6 years ago
0.5.1
6 years ago
0.5.0
6 years ago
0.4.0
6 years ago
0.3.0
6 years ago
0.2.2
6 years ago
0.2.1
6 years ago
0.2.0
6 years ago
0.1.3
6 years ago
0.1.2
6 years ago
0.1.0
6 years ago