index.vue
959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<template>
<div @click="openDrawer" class="setting-button">
<SettingOutlined />
<SettingDrawer @register="register" />
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { SettingOutlined } from '@ant-design/icons-vue';
import SettingDrawer from './SettingDrawer';
import { useDrawer } from '/@/components/Drawer';
//
export default defineComponent({
name: 'SettingBtn',
components: { SettingOutlined, SettingDrawer },
setup() {
const [register, { openDrawer }] = useDrawer();
return {
register,
openDrawer,
};
},
});
</script>
<style lang="less" scoped>
@import (reference) '../../../design/index.less';
.setting-button {
position: absolute;
z-index: 10;
display: flex;
// padding: 10px;
color: @white;
cursor: pointer;
background: @primary-color;
justify-content: center;
align-items: center;
}
</style>