refine default highlight for all six views

This commit is contained in:
Cindy Chang
2024-08-30 11:16:03 +08:00
parent 700b701984
commit 725cc76ac2
4 changed files with 69 additions and 18 deletions

17
src/components/Button.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<div class="button-component flex">
{{ buttonText }}
</div>
</template>
<script>
export default {
setup(props) {
const buttonText = props.buttonText;
return {
buttonText
};
},
}
</script>