mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-07 10:42:56 +00:00
74 lines
2.0 KiB
Vue
74 lines
2.0 KiB
Vue
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. -->
|
|
<template>
|
|
<div class="item">
|
|
<span class="label">{{ t("title") }}</span>
|
|
<el-input
|
|
class="input"
|
|
v-model="title"
|
|
size="mini"
|
|
placeholder="Please input title"
|
|
@change="updateWidgetConfig({ title })"
|
|
/>
|
|
</div>
|
|
<div class="item">
|
|
<span class="label">{{ t("tooltipsContent") }}</span>
|
|
<el-input
|
|
class="input"
|
|
v-model="tips"
|
|
size="mini"
|
|
placeholder="Please input tips"
|
|
@change="updateWidgetConfig({ tips })"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref, defineEmits, defineProps } from "vue";
|
|
import { useI18n } from "vue-i18n";
|
|
import { WidgetConfig } from "@/types/dashboard";
|
|
import type { PropType } from "vue";
|
|
|
|
const props = defineProps({
|
|
config: {
|
|
type: Object as PropType<WidgetConfig>,
|
|
default: () => ({ title: "", tooltips: "" }),
|
|
},
|
|
});
|
|
const emits = defineEmits(["update"]);
|
|
const { t } = useI18n();
|
|
const title = ref<string>(props.config.title || "");
|
|
const tips = ref<string>(props.config.tips || "");
|
|
|
|
function updateWidgetConfig(param: { [key: string]: unknown }) {
|
|
emits("update", param);
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.label {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.input {
|
|
width: 500px;
|
|
}
|
|
|
|
.item {
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|