mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 03:09:18 +00:00
fix: polish pages and bugs fix (#36)
This commit is contained in:
@@ -38,7 +38,7 @@ const props = defineProps({
|
||||
|
||||
onMounted(async () => {
|
||||
await setOptions(props.option);
|
||||
addResizeListener(unref(chartRef), resize);
|
||||
chartRef.value && addResizeListener(unref(chartRef), resize);
|
||||
setTimeout(() => {
|
||||
const instance = getInstance();
|
||||
|
||||
|
@@ -22,6 +22,7 @@ limitations under the License. -->
|
||||
:multiple="multiple"
|
||||
:disabled="disabled"
|
||||
:style="{ borderRadius }"
|
||||
:clearable="clearable"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in options"
|
||||
@@ -60,6 +61,7 @@ const props = defineProps({
|
||||
borderRadius: { type: Number, default: 3 },
|
||||
multiple: { type: Boolean, default: false },
|
||||
disabled: { type: Boolean, default: false },
|
||||
clearable: { type: Boolean, default: false },
|
||||
});
|
||||
|
||||
const selected = ref<string[] | string>(props.value);
|
||||
|
Reference in New Issue
Block a user