14 lines
223 B
Vue
14 lines
223 B
Vue
<template>
|
|
<button class="btn btn-label-primary btn-icon">
|
|
<i class="icon-base bx bx-plus"></i>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PlusButton',
|
|
methods: {
|
|
},
|
|
};
|
|
</script>
|