Skip to content
Snippets Groups Projects
Select Git revision
  • kusanagi
  • starling
  • 2025-05-privilege-ui
  • 2025-05-fixtures
  • 20250526-delete-person-refacto
  • 20250519-config-sync-db
  • 2025-05-patch-organization-main
  • 20250512-doc-install
  • starling-patch-datepicker
  • ripley
  • master default
  • starling-path-notification-todo
  • stariling-patch-numeros
  • starling-patch-relance-mail
  • starling-patch-organization-require
  • starling-docker-env
  • apis-publiques
  • starling-docker-dev
  • starling-avenants
  • ripley-fix-mapping
  • 2.12.3-final
  • 2.13.1-ripley
  • 2.12.2
23 results

oscar

  • Clone with SSH
  • Clone with HTTPS
  • 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.