aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/components/BaseButton.vue
blob: 2a528b081c4baf63bab0315a6f74e38f694dd674 (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
<template>
	<button :type="type ? type : ''">
		{{ value }}
	</button>
</template>

<script>
export default {
	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>