Small fixes

This commit is contained in:
David Haz
2025-07-19 19:55:19 +03:00
parent a6df503535
commit 340985ce52
8 changed files with 350 additions and 452 deletions

View File

@@ -31,21 +31,21 @@
</template>
<script setup lang="ts">
import { ref } from 'vue'
import TabbedLayout from '../../components/common/TabbedLayout.vue'
import PropTable from '../../components/common/PropTable.vue'
import CliInstallation from '../../components/code/CliInstallation.vue'
import CodeExample from '../../components/code/CodeExample.vue'
import Customize from '../../components/common/Customize.vue'
import PreviewSwitch from '@/components/common/PreviewSwitch.vue'
import AnimatedList from '../../content/Components/AnimatedList/AnimatedList.vue'
import { animatedList } from '../../constants/code/Components/animatedListCode'
import { useForceRerender } from '@/composables/useForceRerender'
import { ref } from 'vue';
import TabbedLayout from '../../components/common/TabbedLayout.vue';
import PropTable from '../../components/common/PropTable.vue';
import CliInstallation from '../../components/code/CliInstallation.vue';
import CodeExample from '../../components/code/CodeExample.vue';
import Customize from '../../components/common/Customize.vue';
import PreviewSwitch from '@/components/common/PreviewSwitch.vue';
import AnimatedList from '../../content/Components/AnimatedList/AnimatedList.vue';
import { animatedList } from '../../constants/code/Components/animatedListCode';
import { useForceRerender } from '@/composables/useForceRerender';
const { rerenderKey } = useForceRerender()
const showGradients = ref(true)
const enableArrowNavigation = ref(true)
const displayScrollbar = ref(true)
const { rerenderKey } = useForceRerender();
const showGradients = ref(true);
const enableArrowNavigation = ref(true);
const displayScrollbar = ref(true);
const propData = [
{
@@ -96,5 +96,5 @@ const propData = [
default: '-',
description: 'Emitted when an item is selected. Receives (item: string, index: number)'
}
]
</script>
];
</script>