Skip to content
Snippets Groups Projects
Select Git revision
  • 78cbaba33b752937d7b880b199e434cbb075b314
  • master default protected
  • detached4
  • detached3
  • detached2
  • bsv-next
  • detached
  • php82
  • 6.x
  • 6.4.0
  • 6.3.3
  • 6.3.2
  • 6.3.1
  • 6.3.0
  • 6.2.7
  • 6.2.6
  • 6.2.5
  • 6.2.4
  • 6.2.3
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.1.3
  • 6.1.2
  • 6.1.1
  • 6.1.0
  • 6.0.0
27 results

autoload_classmap.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    App.vue 867 B
    <template>
        <zotero-query-component :default-id="groupOrUserId" @entrySelected="selectedEntry"/>
    </template>
    
    <script>
        import ZoteroQueryComponent from "./components/ZoteroQueryComponent";
        import config from './config/config';
        export default {
            name: 'App',
            components: {
                ZoteroQueryComponent
            },
            data(){
                return {
                    groupOrUserId: config.USER_GROUP_ID
                }
            },
    
            methods : {
                selectedEntry(e){
                    alert(e)
                }
            }
        }
    </script>
    
    <style>
        #app {
            font-family: Avenir, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: #2c3e50;
        }
    
    
        .zotero-query-component {
            width: 600px;
            margin: auto;
        }
    
    
    </style>