Skip to content

Commit

Permalink
fix vue example
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Oct 27, 2023
1 parent bdfa242 commit 51cc80c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MyApp/_pages/vue/autoquerygrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Which columns are displayed and how they're formatted are further customizable w
<span class="text-gray-900" v-html="id"></span>
</template>

<template #name="{ name }" v-html="name"></template>
<template #name="{ name }">{{name}}</template>

<template #roomNumber-header>
<span class="hidden lg:inline">Room </span>No
Expand Down
2 changes: 1 addition & 1 deletion MyApp/_pages/vue/datagrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ collapse column names at small screen sizes:
<span class="text-gray-900" v-html="id"></span>
</template>

<template #name="{ name }" v-html="name"></template>
<template #name="{ name }">{{name}}</template>

<template #roomNumber-header>
<span class="hidden lg:inline">Room </span>No
Expand Down

0 comments on commit 51cc80c

Please sign in to comment.