fix(client): コントロールパネルのカスタム絵文字タブが切り替わらないように見える問題を修正
This commit is contained in:
parent
540e6e4f99
commit
1a883f4f05
3 changed files with 11 additions and 4 deletions
|
|
@ -48,7 +48,7 @@
|
|||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent } from 'vue';
|
||||
import { computed, defineComponent, toRef } from 'vue';
|
||||
import MkButton from '@client/components/ui/button.vue';
|
||||
import MkInput from '@client/components/form/input.vue';
|
||||
import MkPagination from '@client/components/ui/pagination.vue';
|
||||
|
|
@ -112,7 +112,7 @@ export default defineComponent({
|
|||
},
|
||||
|
||||
async mounted() {
|
||||
this.$emit('info', this[symbols.PAGE_INFO]);
|
||||
this.$emit('info', toRef(this, symbols.PAGE_INFO));
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue