nextcloud-vue-collections

0.12.0 • Public • Published

Nextcloud Vue component for collaboration collections

npm last version Dependabot status

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>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.12.0
    2,553
    • latest

Version History

Package Sidebar

Install

npm i nextcloud-vue-collections

Weekly Downloads

3,334

Version

0.12.0

License

AGPL-3.0

Unpacked Size

138 kB

Total Files

9

Last publish

Collaborators

  • juliushaertl
  • susnux