Skip to content
Snippets Groups Projects
Base.vue 797 B
Newer Older
  • Learn to ignore specific revisions
  • Eliot Berriot's avatar
    Eliot Berriot committed
      <div class="main pusher"  v-title="labels.title">
    
        <nav class="ui secondary pointing menu" role="navigation" :aria-label="labels.secondaryMenu">
    
          <router-link
            class="ui item"
    
    Jo Vuit's avatar
    Jo Vuit committed
            :to="{name: 'manage.library.files'}"><translate :translate-context="'Menu/Admin/Link'">Files</translate></router-link>
    
        <router-view :key="$route.fullPath"></router-view>
      </div>
    </template>
    
    <script>
    
    Eliot Berriot's avatar
    Eliot Berriot committed
    export default {
      computed: {
    
    Jo Vuit's avatar
    Jo Vuit committed
          let title = this.$pgettext('Head/Admin/Title', 'Manage library')
          let secondaryMenu = this.$gettext('Menu/*/Hidden text', 'Secondary menu')
    
    Eliot Berriot's avatar
    Eliot Berriot committed
          return {
    
    R En's avatar
    R En committed
    
    <style scoped>
    .ui.menu .item > .label {
      position: absolute;
      right: -2em;
    }
    </style>