mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 14:39:30 -07:00
Small fixes
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user