UNPKG

uikit

Version:

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

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