aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/components/BaseButton.vue
blob: 4dad97357d24354e91c7a7e6c74fc731d959576a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
	<button :type="type ? type : ''">
		{{ value }}
	</button>
</template>

<script lang="ts">
import { defineComponent } from "vue";

export default defineComponent({
	name: "BaseButton",
	props: {
		type: {
			type: String,
			required: true
		},
		value: {
			type: String,
			required: true
		}
	}
});
</script>

<style lang="scss" scoped>
@use "../scss/mixins";

button {
	@include mixins.button;
}
</style>