Skip to content

Commit

Permalink
fix(#3380): reactivity links in landing Footer
Browse files Browse the repository at this point in the history
  • Loading branch information
RVitaly1978 committed Apr 28, 2023
1 parent 0777e24 commit 5b58752
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/docs/components/landing/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</template>

<script lang="ts" setup>
import { markRaw } from 'vue'
import { markRaw, computed } from 'vue'
import { useElementTextColor, useBreakpoint } from 'vuestic-ui'
Expand All @@ -100,7 +100,7 @@ const buttons = [
{ href: 'https://github.com/epicmaxco/epic-spinners', icon: IconSpinnersRaw, label: 'landing.footer.buttons.spinners' },
]
const sitemap = [
const sitemap = computed(() => ([
{
title: 'landing.footer.sitemap.resources[0]',
items: [
Expand Down Expand Up @@ -133,7 +133,7 @@ const sitemap = [
{ label: 'landing.footer.sitemap.about[3]', component: 'a', prop: 'href', value: 'mailto:[email protected]?subject=VuesticUI Partnership' },
]
},
]
]))
</script>

<style lang="scss" scoped>
Expand Down

0 comments on commit 5b58752

Please sign in to comment.