docs: Add some comments
This commit is contained in:
parent
d7c8ba4f81
commit
35791c320e
|
|
@ -46,7 +46,9 @@ export default defineComponent({
|
|||
}
|
||||
}
|
||||
|
||||
const classNames = computed(() => joinClassNames(className, {}))
|
||||
const classNames = computed(() => joinClassNames(className, {
|
||||
// Prepare for future extended styles
|
||||
}))
|
||||
|
||||
onMounted(load)
|
||||
onBeforeUpdate(() => {
|
||||
|
|
|
|||
|
|
@ -57,7 +57,9 @@ export default defineComponent({
|
|||
width: unref(width)
|
||||
}, isEmpty))
|
||||
|
||||
const classNames = computed(() => joinClassNames(className, {}))
|
||||
const classNames = computed(() => joinClassNames(className, {
|
||||
// Prepare for future extended styles
|
||||
}))
|
||||
|
||||
return {
|
||||
style,
|
||||
|
|
|
|||
Loading…
Reference in New Issue