UNPKG

uikit

Version:

UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.

18 lines (14 loc) 307 B
import { $ } from 'uikit-util'; export default { props: { container: Boolean, }, data: { container: true, }, computed: { container({ container }) { return (container === true && this.$container) || (container && $(container)); }, }, };