Sha256: e700bc23fac7f5afd757b45f4e12004e32900e647140620858e052f14a133f52

Contents?: true

Size: 1.36 KB

Versions: 18

Compression:

Stored size: 1.36 KB

Contents

<template>
  <nav role="navigation" aria-label="main navigation" class="navbar is-fixed-top">
    <div class="navbar-brand">
      <a class="navbar-item"><h1 class="title">Mihari</h1></a
      ><a role="button" aria-label="menu" class="navbar-burger burger"
        ><span aria-hidden="true"></span><span aria-hidden="true"></span
        ><span aria-hidden="true"></span
      ></a>
    </div>
    <div class="navbar-menu">
      <div class="navbar-start"></div>
      <div class="navbar-end">
        <router-link class="navbar-item" :to="{ name: 'Alerts' }">Alerts</router-link>
        <router-link class="navbar-item" :to="{ name: 'NewRule' }">New rule</router-link>
        <router-link class="navbar-item" :to="{ name: 'Rules' }">Rules</router-link>
        <router-link class="navbar-item" :to="{ name: 'Configs' }">Configs</router-link>
        <a class="navbar-item"
          ><a href="/redoc-static.html" target="_blank" class="navbar-item">API</a></a
        >
        <a class="navbar-item"
          ><a href="https://github.com/ninoseki/mihari" target="_blank" class="navbar-item"
            >GitHub</a
          ></a
        >
      </div>
    </div>
  </nav>
</template>

<script lang="ts">
import { defineComponent } from "vue"

export default defineComponent({
  name: "NavbarItem"
})
</script>

<style scoped>
.navbar {
  border-bottom: 1px solid lightgray;
}
</style>

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
mihari-5.7.0 frontend/src/components/Navbar.vue
mihari-5.6.2 frontend/src/components/Navbar.vue
mihari-5.6.1 frontend/src/components/Navbar.vue
mihari-5.6.0 frontend/src/components/Navbar.vue
mihari-5.5.0 frontend/src/components/Navbar.vue
mihari-5.4.9 frontend/src/components/Navbar.vue
mihari-5.4.8 frontend/src/components/Navbar.vue
mihari-5.4.7 frontend/src/components/Navbar.vue
mihari-5.4.6 frontend/src/components/Navbar.vue
mihari-5.4.5 frontend/src/components/Navbar.vue
mihari-5.4.4 frontend/src/components/Navbar.vue
mihari-5.4.3 frontend/src/components/Navbar.vue
mihari-5.4.2 frontend/src/components/Navbar.vue
mihari-5.4.1 frontend/src/components/Navbar.vue
mihari-5.4.0 frontend/src/components/Navbar.vue
mihari-5.3.2 frontend/src/components/Navbar.vue
mihari-5.3.1 frontend/src/components/Navbar.vue
mihari-5.3.0 frontend/src/components/Navbar.vue