Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

Commit 6ce6974

Browse files
committed
build: v0.4.5
1 parent e572671 commit 6ce6974

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xsoulspace/vue_flutter_tailwind",
33
"description": "Vue3 styled like Flutter with Tailwind CSS",
4-
"version": "0.4.4",
4+
"version": "0.4.5",
55
"private": false,
66
"author": {
77
"name": "Anton Malofeev",

src/components/ListViewBuilder.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ export default {
4646
ListViewItem,
4747
},
4848
setup(props) {
49-
const isItemsExists = props.itemCount > 0
49+
const isItemsExists = computed(() => props.itemCount > 0)
5050
const items = computed(() => {
5151
const arr: string[] = []
5252
arr.length = props.itemCount
53-
if (isItemsExists) {
53+
if (isItemsExists.value) {
5454
arr.fill(' ')
5555
}
5656
return arr

0 commit comments

Comments
 (0)