Upgraded dependencies, bumped to Node 24.
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
<script setup>
|
||||
import { computed, inject } from 'vue';
|
||||
|
||||
import logo from '#/assets/img/logo.svg?raw';
|
||||
|
||||
const emit = defineEmits(['sidebar']);
|
||||
const pageContext = inject('pageContext');
|
||||
|
||||
const activePage = computed(() => pageContext.urlParsed.pathname.split('/')[1]);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
class="sidebar-container"
|
||||
@@ -85,17 +96,6 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed, inject } from 'vue';
|
||||
|
||||
import logo from '#/assets/img/logo.svg?raw'; // eslint-disable-line import/no-unresolved
|
||||
|
||||
const emit = defineEmits(['sidebar']);
|
||||
const pageContext = inject('pageContext');
|
||||
|
||||
const activePage = computed(() => pageContext.urlParsed.pathname.split('/')[1]);
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.sidebar-container {
|
||||
width: 100%;
|
||||
|
||||
Reference in New Issue
Block a user