This package has been deprecated

Author message:

This package is now deprecated, the components have been merged into @nextcloud/vue as of version 8.14.0.

nextcloud-vue-collections

0.13.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>

Package Sidebar

Install

npm i nextcloud-vue-collections

Weekly Downloads

2,608

Version

0.13.0

License

AGPL-3.0-or-later

Unpacked Size

102 kB

Total Files

9

Last publish

Collaborators

  • juliushaertl
  • susnux