![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/vue/src/platforms/web/server/modules/ |
/* @flow */ import { escape, noUnitNumericStyleProps } from '../util' import { hyphenate } from 'shared/util' import { getStyle } from 'web/util/style' export function genStyle (style: Object): string { let styleText = '' for (const key in style) { const value = style[key] const hyphenatedKey = hyphenate(key) if (Array.isArray(value)) { for (let i = 0, len = value.length; i < len; i++) { styleText += normalizeValue(hyphenatedKey, value[i]) } } else { styleText += normalizeValue(hyphenatedKey, value) } } return styleText } function normalizeValue(key: string, value: any): string { if ( typeof value === 'string' || (typeof value === 'number' && noUnitNumericStyleProps[key]) || value === 0 ) { return `${key}:${value};` } else { // invalid values return `` } } export default function renderStyle (vnode: VNodeWithData): ?string { const styleText = genStyle(getStyle(vnode, false)) if (styleText !== '') { return ` style=${JSON.stringify(escape(styleText))}` } }