- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경 - Nginx 리버스 프록시 설정 파일 추가 - 배포 가이드 업데이트
This commit is contained in:
66
.output/server/chunks/build/VDivider-C0e0b_O5.mjs
Normal file
66
.output/server/chunks/build/VDivider-C0e0b_O5.mjs
Normal file
@@ -0,0 +1,66 @@
|
||||
import { toRef, computed, createVNode } from 'vue';
|
||||
import { g as genericComponent, p as propsFactory, F as provideTheme, at as useTextColor, j as convertToUnit, a as useRender, K as makeThemeProps, m as makeComponentProps } from './server.mjs';
|
||||
|
||||
const makeVDividerProps = propsFactory({
|
||||
color: String,
|
||||
inset: Boolean,
|
||||
length: [Number, String],
|
||||
opacity: [Number, String],
|
||||
thickness: [Number, String],
|
||||
vertical: Boolean,
|
||||
...makeComponentProps(),
|
||||
...makeThemeProps()
|
||||
}, "VDivider");
|
||||
const VDivider = genericComponent()({
|
||||
name: "VDivider",
|
||||
props: makeVDividerProps(),
|
||||
setup(props, _ref) {
|
||||
let {
|
||||
attrs,
|
||||
slots
|
||||
} = _ref;
|
||||
const {
|
||||
themeClasses
|
||||
} = provideTheme(props);
|
||||
const {
|
||||
textColorClasses,
|
||||
textColorStyles
|
||||
} = useTextColor(toRef(props, "color"));
|
||||
const dividerStyles = computed(() => {
|
||||
const styles = {};
|
||||
if (props.length) {
|
||||
styles[props.vertical ? "height" : "width"] = convertToUnit(props.length);
|
||||
}
|
||||
if (props.thickness) {
|
||||
styles[props.vertical ? "borderRightWidth" : "borderTopWidth"] = convertToUnit(props.thickness);
|
||||
}
|
||||
return styles;
|
||||
});
|
||||
useRender(() => {
|
||||
const divider = createVNode("hr", {
|
||||
"class": [{
|
||||
"v-divider": true,
|
||||
"v-divider--inset": props.inset,
|
||||
"v-divider--vertical": props.vertical
|
||||
}, themeClasses.value, textColorClasses.value, props.class],
|
||||
"style": [dividerStyles.value, textColorStyles.value, {
|
||||
"--v-border-opacity": props.opacity
|
||||
}, props.style],
|
||||
"aria-orientation": !attrs.role || attrs.role === "separator" ? props.vertical ? "vertical" : "horizontal" : void 0,
|
||||
"role": `${attrs.role || "separator"}`
|
||||
}, null);
|
||||
if (!slots.default) return divider;
|
||||
return createVNode("div", {
|
||||
"class": ["v-divider__wrapper", {
|
||||
"v-divider__wrapper--vertical": props.vertical,
|
||||
"v-divider__wrapper--inset": props.inset
|
||||
}]
|
||||
}, [divider, createVNode("div", {
|
||||
"class": "v-divider__content"
|
||||
}, [slots.default()]), divider]);
|
||||
});
|
||||
return {};
|
||||
}
|
||||
});
|
||||
|
||||
export { VDivider as V };
|
||||
Reference in New Issue
Block a user