| Current Path : /var/www/html/maiwp.bak/node_modules/vue/src/platforms/web/server/directives/ |
| Current File : /var/www/html/maiwp.bak/node_modules/vue/src/platforms/web/server/directives/show.js |
/* @flow */
export default function show (node: VNodeWithData, dir: VNodeDirective) {
if (!dir.value) {
const style: any = node.data.style || (node.data.style = {})
if (Array.isArray(style)) {
style.push({ display: 'none' })
} else {
style.display = 'none'
}
}
}