OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
docs
/
.vitepress
/
theme
/
components
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:35:07 AM
rwxr-xr-x
📄
Codeblock.vue
499 bytes
08/07/2024 04:35:07 AM
rw-r--r--
Editing: Codeblock.vue
Close
<template> <div> <tabs :options="{ useUrlFragment: false }"> <tab :id="atId" name="Attributes"> <slot name="at"></slot> </tab> <tab :id="anId" name="Annotations"> <slot name="an"></slot> </tab> </tabs> </div> </template> <script> export default { props: { id: { type: String, default: null } }, computed: { anId() { return this.id + '-an' }, atId() { return this.id + '-at' } } } </script>