You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* @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'
|
|
}
|
|
}
|
|
}
|
|
|