load stylesheets

This commit is contained in:
lightling 2024-03-13 00:25:39 -04:00
parent c250df55a0
commit 4d8d267978
2 changed files with 27 additions and 1 deletions

View file

@ -4,6 +4,7 @@ declare module 'content/routes.js' {
type GenericRouteDefinition = {
id: string
stylesheetUrls: string[]
template: Template
}

View file

@ -1,6 +1,31 @@
<script setup lang="ts">
import { ref } from 'vue'
import { useRoute } from 'vue-router'
const ready = true
import { useRouteStore } from 'src/routes'
const ready = ref(false)
const currentRoute = useRoute()
const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path]
const init = async () => {
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')
staleStylesheets.forEach(stylesheet => {
document.removeChild(stylesheet)
})
routeConfig.stylesheetUrls.forEach(stylesheet => {
const newElement = document.createElement('link')
newElement.setAttribute('rel', 'stylesheet')
newElement.setAttribute('href', stylesheet)
document.head.appendChild(newElement)
})
ready.value = true
}
init()
</script>
<template lang="pug">