17 lines
270 B
Vue
17 lines
270 B
Vue
<script>
|
|
import SpotIcon from './spotIcon.vue';
|
|
|
|
export default {
|
|
components: {
|
|
SpotIcon
|
|
},
|
|
props: {
|
|
classes: String,
|
|
text: String,
|
|
icon: String
|
|
}
|
|
}
|
|
</script>
|
|
<template>
|
|
<button :class="classes"><SpotIcon :icon="icon" :text="text" /></button>
|
|
</template> |