<template> <view :class="[dark ? 'bg-black' : 'bg-white']" class="cu-bar tabbar"><slot></slot></view> </template> <script> export default { name: 'l-bar', props: { msginput: {}, dark: {} } } </script>