2021-03-08 15:29:35 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-07 21:30:22 +00:00
|
|
|
|
|
|
|
import './BlockToolbar.scss';
|
|
|
|
|
|
|
|
export const SbBlockToolbar = defineComponent({
|
|
|
|
name: 'sb-block-toolbar',
|
|
|
|
|
2021-03-08 15:29:35 +00:00
|
|
|
setup() {
|
2021-03-07 21:30:22 +00:00
|
|
|
return () => (
|
|
|
|
<div class="sb-block-toolbar"></div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|