20 lines
400 B
Vue
20 lines
400 B
Vue
<script setup lang="ts">
|
|
import { BrandGithub, BrandTwitter, InfoCircle, Moon, Sun } from '@vicons/tabler';
|
|
import { useStyleStore } from '@/stores/style.store';
|
|
|
|
const styleStore = useStyleStore();
|
|
const { isDarkTheme } = toRefs(styleStore);
|
|
</script>
|
|
|
|
<template>
|
|
<p>test this too</p>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.n-button {
|
|
&:not(:last-child) {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
</style>
|