mirror of
https://github.com/bitinflow/rerun-encoder.git
synced 2026-03-13 13:46:00 +00:00
16 lines
257 B
Vue
16 lines
257 B
Vue
<template>
|
|
<button
|
|
type="button"
|
|
@click="$emit('click')"
|
|
class="bg-primary-500 py-1.5 px-4 rounded text-white"
|
|
>
|
|
<slot/>
|
|
</button>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: "VButton",
|
|
emits: ['click']
|
|
}
|
|
</script> |