Skip to content
Snippets Groups Projects
Select Git revision
  • 3824d714cc51e0a3a23995f64b413b3280672f85
  • master default protected
  • release_3.0.0
  • test
  • feature_pre_sql
  • develop
  • 3.0.1
  • 3.0.0
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
26 results

config

  • Open with
  • Download source code
  • Download directory
  • Your workspaces

      A workspace is a virtual sandbox environment for your code in GitLab.

      No agents available to create workspaces. Please consult Workspaces documentation for troubleshooting.

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.

    zotero-vue-client

    Project setup

    yarn install

    Compiles and hot-reloads for development

    yarn serve

    Compiles and minifies for production

    yarn build

    Lints and fixes files

    yarn lint

    component usage example

    <zotero-vue-client default-type="user" default-id="1234" @entry-selected="selectedEntryCallback"/>

    where default-type is "user" or "group" and default-id is a group or user id (https://www.zotero.org/support/dev/web_api/v3/basics)

    Another example with custom options :

    <zotero-vue-client
        default-type="user"
        default-id="475425"
        default-query="1984"
        :options="{
            pageLength: 10,
            editableConfig: false
          }"
        @entry-selected="selectedEntryCallback"/>

    selectedEntryCallback will received the selected entry as argument (in JSON format)

    Customize configuration

    See Configuration Reference.