Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpchen committed Aug 18, 2024
1 parent a8a0ab9 commit 481b09b
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions docs/components/Copyright.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,26 @@
</template>

<script setup lang="ts">
import { useData } from 'vitepress';
import { onBeforeMount, ref } from 'vue';
import { data as globalData } from '../data/global.data';
const { site, theme } = useData();
const webTitle = site.value.titleTemplate;
const vitepressVersion = ref<string | null>(globalData.vitepressVersion);
import { useData } from 'vitepress';
import { onBeforeMount, ref } from 'vue';
import { data as globalData } from '../data/global.data';
const { site, theme } = useData();
const webTitle = site.value.titleTemplate;
const vitepressVersion = ref<string | null>(globalData.vitepressVersion);
</script>

<style scoped>
.site-footer {
color: #888;
text-align: center;
font-size: 0.75rem;
width: 100%;
padding: 15px 0;
overflow: auto;
}
.bold {
color: var(--vp-code-color);
font-weight: 700;
}
.site-footer {
color: #888;
text-align: center;
font-size: 0.75rem;
width: 100%;
padding: 15px 0;
overflow: auto;
}
.bold {
color: var(--vp-code-color);
font-weight: 700;
}
</style>

0 comments on commit 481b09b

Please sign in to comment.