load stylesheets
This commit is contained in:
parent
c250df55a0
commit
4d8d267978
2 changed files with 27 additions and 1 deletions
1
src/content-env.d.ts
vendored
1
src/content-env.d.ts
vendored
|
@ -4,6 +4,7 @@ declare module 'content/routes.js' {
|
|||
|
||||
type GenericRouteDefinition = {
|
||||
id: string
|
||||
stylesheetUrls: string[]
|
||||
template: Template
|
||||
}
|
||||
|
||||
|
|
27
src/main.vue
27
src/main.vue
|
@ -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">
|
||||
|
|
Loading…
Add table
Reference in a new issue