mirror of
https://github.com/bitinflow/rerun-encoder.git
synced 2026-03-13 21:56:01 +00:00
first commit
This commit is contained in:
16
src/components/VButton.vue
Normal file
16
src/components/VButton.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user