Skip to content

Commit 51c5d78

Browse files
committed
docs: dense=True -> density="compact" for vue3
1 parent 2045b95 commit 51c5d78

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • examples/validation/discussion

examples/validation/discussion/655.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def update_cube_axes_visibility(**kwargs):
5757
with vuetify.VCard():
5858
vuetify.VCardTitle("This is home")
5959
with vuetify.VContainer(fluid=True, style="height: 600px;"):
60-
with vuetify.VRow(dense=True):
60+
with vuetify.VRow(density="compact"):
6161
vuetify.VSpacer()
6262
figure = plotly.Figure(
6363
display_logo=False,
@@ -97,7 +97,7 @@ def update_cube_axes_visibility(**kwargs):
9797
false_value="light",
9898
classes="mx-1",
9999
hide_details=True,
100-
dense=True,
100+
density="compact",
101101
)
102102
# vuetify.VCheckbox(
103103
# v_model="$vuetify.theme.dark",
@@ -107,7 +107,7 @@ def update_cube_axes_visibility(**kwargs):
107107
# off_icon="mdi-lightbulb-outline",
108108
# classes="mx-1",
109109
# hide_details=True,
110-
# dense=True,
110+
# density="compact",
111111
# )
112112

113113
with layout.content:

0 commit comments

Comments
 (0)