mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
15 lines
317 B
Vue
15 lines
317 B
Vue
<template>
|
|
<SidebarInset>
|
|
<SidebarTrigger class="-ml-1" />
|
|
<h1 @click="open = !open">
|
|
<!-- 主体 -->
|
|
</h1>
|
|
</SidebarInset>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { inject } from 'vue'
|
|
import { SidebarTrigger, SidebarInset } from '@memoh/ui'
|
|
|
|
const open = inject('sideBarIsOpen')
|
|
</script> |