forked from mirrors/homebox
75c633dcb5
* dummy commit * cleanup workflows * setup and run eslint * add linter to CI * use eslint for formatting * reorder rules * drop editor config
14 lines
542 B
Vue
14 lines
542 B
Vue
<template>
|
|
<div class="divider">
|
|
<div class="btn-group min-w-[180px] flex-nowrap">
|
|
<button name="options" class="btn btn-sm btn-primary" @click="$emit('edit')">
|
|
<Icon name="heroicons-pencil" class="h-5 w-5 mr-1" aria-hidden="true" />
|
|
<span> Edit </span>
|
|
</button>
|
|
<button name="options" class="btn btn-sm btn-primary" @click="$emit('delete')">
|
|
<Icon name="heroicons-trash" class="h-5 w-5 mr-1" aria-hidden="true" />
|
|
<span> Delete </span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|