20 lines
549 B
JavaScript
20 lines
549 B
JavaScript
import { createVNode, mergeProps } from 'vue';
|
|
import { l as genericComponent, m as makeVToolbarTitleProps, o as useRender, p as VToolbarTitle } from './server.mjs';
|
|
|
|
const VAppBarTitle = genericComponent()({
|
|
name: "VAppBarTitle",
|
|
props: makeVToolbarTitleProps(),
|
|
setup(props, _ref) {
|
|
let {
|
|
slots
|
|
} = _ref;
|
|
useRender(() => createVNode(VToolbarTitle, mergeProps(props, {
|
|
"class": "v-app-bar-title"
|
|
}), slots));
|
|
return {};
|
|
}
|
|
});
|
|
|
|
export { VAppBarTitle as V };
|
|
//# sourceMappingURL=VAppBarTitle-DXp_6uL3.mjs.map
|