fix build throwing document not defined error
This commit is contained in:
parent
32162b5386
commit
42007ff112
2 changed files with 6 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
|
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
@ -13,7 +13,7 @@ const routeStore = useRouteStore()
|
||||||
const routeConfig = routeStore._routes[currentRoute.path]
|
const routeConfig = routeStore._routes[currentRoute.path]
|
||||||
const headerConfig = routeStore._header
|
const headerConfig = routeStore._header
|
||||||
|
|
||||||
const init = async () => {
|
onMounted(async () => {
|
||||||
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')
|
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')
|
||||||
staleStylesheets.forEach(stylesheet => {
|
staleStylesheets.forEach(stylesheet => {
|
||||||
document.removeChild(stylesheet)
|
document.removeChild(stylesheet)
|
||||||
|
@ -26,9 +26,7 @@ const init = async () => {
|
||||||
document.head.appendChild(newElement)
|
document.head.appendChild(newElement)
|
||||||
})
|
})
|
||||||
ready.value = true
|
ready.value = true
|
||||||
}
|
})
|
||||||
|
|
||||||
init()
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
|
|
||||||
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
||||||
|
@ -12,11 +12,9 @@ const currentRoute = useRoute()
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
const routeConfig = routeStore._routes[currentRoute.path]
|
const routeConfig = routeStore._routes[currentRoute.path]
|
||||||
|
|
||||||
const init = async () => {
|
onMounted(async () => {
|
||||||
content.value = await fetchAndParseMarkdown(routeConfig.content)
|
content.value = await fetchAndParseMarkdown(routeConfig.content)
|
||||||
}
|
})
|
||||||
|
|
||||||
init()
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
|
|
Loading…
Add table
Reference in a new issue