Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

README.md

Blame
  • 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-query-component :default-id="1234" @entrySelected="selectedEntryCallback"/>

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

    Another example with custom options :

    <zotero-query-component 
        :default-id="1234" 
        :options="{
            pageLength: 10,
            editableConfig: false,
            format: 'json'
          }"
        @entrySelected="selectedEntryCallback"/>

    available formats : https://www.zotero.org/support/dev/web_api/v3/basics#export_formats

    Customize configuration

    See Configuration Reference.