init component
This commit is contained in:
16
node_modules/buetify/lib/components/layout/divider/BVerticalDivider.js
generated
vendored
Executable file
16
node_modules/buetify/lib/components/layout/divider/BVerticalDivider.js
generated
vendored
Executable file
@@ -0,0 +1,16 @@
|
||||
import "../../../../src/components/layout/divider/divider.sass";
|
||||
import { DEFAULT_THEME_COLOR_MAP, useTheme } from '../../../composables/theme';
|
||||
import { h } from 'vue';
|
||||
export default function BVerticalDivider(props) {
|
||||
const {
|
||||
themeClasses
|
||||
} = useTheme({
|
||||
themeMap: props.themeMap ?? DEFAULT_THEME_COLOR_MAP,
|
||||
isThemeable: props.isThemeable ?? true
|
||||
});
|
||||
return h(props.tag ?? 'hr', {
|
||||
class: ['is-divider-vertical', ...themeClasses.value],
|
||||
'data-content': props.text || null
|
||||
});
|
||||
}
|
||||
//# sourceMappingURL=BVerticalDivider.js.map
|
||||
Reference in New Issue
Block a user