mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
25 lines
488 B
Vue
25 lines
488 B
Vue
<template>
|
|
<DefaultWidget
|
|
name="顶栏布局设置"
|
|
icon="mdi-sort"
|
|
@mouseover="loadNavbarSettings()"
|
|
@click="toggleNavbarSettings()"
|
|
/>
|
|
</template>
|
|
<script lang="ts">
|
|
import { DefaultWidget } from '@/ui'
|
|
import { loadNavbarSettings, toggleNavbarSettings } from './vm'
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
DefaultWidget,
|
|
},
|
|
methods: {
|
|
async loadNavbarSettings() {
|
|
await loadNavbarSettings()
|
|
},
|
|
toggleNavbarSettings,
|
|
},
|
|
})
|
|
</script>
|