import { defineComponent } from 'vue'; import './Select.scss'; export const SbSelect = defineComponent({ name: 'sb-select', inheritAttrs: false, setup(props, context) { return () => (
); }, });