inzynieria_frontend/components/Button.vue

22 lines
260 B
Vue
Raw Normal View History

2021-12-05 20:23:00 +01:00
<template>
<button @click="emitClick">
{{ text }}
</button>
</template>
<script>
export default {
props: {
text: {
type: String,
default: ''
}
},
methods: {
emitClick () {
this.$emit('eclick')
}
}
}
</script>