mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-06-26 04:09:21 +08:00
18 lines
352 B
Vue
18 lines
352 B
Vue
<template>
|
|
<component class="tmagic-design-scrollbar" :is="uiComponent">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getDesignConfig } from './config';
|
|
|
|
defineOptions({
|
|
name: 'TMScrollbar',
|
|
});
|
|
|
|
const ui = getDesignConfig('components')?.scrollbar;
|
|
|
|
const uiComponent = ui?.component || 'el-scrollbar';
|
|
</script>
|