Changing checkboxes

This commit is contained in:
Peter Olu 2022-06-05 22:56:31 +01:00
parent 9b4d3eb20e
commit c37b7ee0f5

View File

@ -37,13 +37,14 @@ limitations under the License. -->
v-for="item in logStore.serviceLogColumn" v-for="item in logStore.serviceLogColumn"
:key="item.value" :key="item.value"
> >
<div <el-checkbox v-model="item.isVisible" :label="item.value" fill="success" />
<!-- <div
style="width: 100%" style="width: 100%"
class="flex-h items-center justify-between" class="flex-h items-center justify-between"
> >
<span style="margin-right: 10px">{{ t(item.value) }}</span> <span style="margin-right: 10px">{{ t(item.value) }}</span>
<el-checkbox v-model="item.isVisible" size="large" /> <el-checkbox v-model="item.isVisible" size="large" />
</div> </div> -->
</el-dropdown-item> </el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</template> </template>
@ -622,6 +623,9 @@ watch(
); );
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.dropdownSelector{
background: var(--nice-black);
}
.el-dropdown-link { .el-dropdown-link {
cursor: pointer; cursor: pointer;
color: var(--el-color-primary); color: var(--el-color-primary);