Sha256: 7ea1fdbb4ef4a0a7f7e4cc5fe855cd9048f67dc1b4b12fac77d08f132c8a251d

Contents?: true

Size: 431 Bytes

Versions: 1

Compression:

Stored size: 431 Bytes

Contents

<template>
  <div class="tags are-medium">
    <span class="tag">
      {{ autonomousSystem.asn }}
    </span>
  </div>
</template>

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

import type { AutonomousSystem } from "@/types"

export default defineComponent({
  name: "AS",
  props: {
    autonomousSystem: {
      type: Object as PropType<AutonomousSystem>,
      required: true
    }
  }
})
</script>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mihari-5.7.0 frontend/src/components/artifact/AS.vue