8627-devToTest #1421

Merged
alexm merged 768 commits from 8627-devToTest into test 2025-02-18 12:37:37 +00:00
1 changed files with 8 additions and 6 deletions
Showing only changes of commit cc07cc7824 - Show all commits

View File

@ -4,10 +4,6 @@ import { defineModel } from 'vue';
const modelValue = defineModel({ type: Boolean, default: false });
const $props = defineProps({
label: {
type: String,
default: null,
},
info: {
type: String,
default: null,
@ -18,10 +14,16 @@ const $props = defineProps({
<template>
<div>
<QCheckbox
:label="label"
v-bind="$attrs"
v-model="modelValue"
/>
<QIcon v-if="info" class="cursor-info q-ml-sm" name="info" size="sm" v-bind="$attrs">
<QIcon
v-if="info"
v-bind="$attrs"
class="cursor-info q-ml-sm"
name="info"
size="sm"
>
<QTooltip>
{{ info }}
</QTooltip>