mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-01 20:05:58 +00:00
65 lines
1.7 KiB
Vue
65 lines
1.7 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>
|
|
<span class="label">{{ t("fontSize") }}</span>
|
|
<el-slider
|
|
class="slider"
|
|
v-model="fontSize"
|
|
show-input
|
|
input-size="small"
|
|
:min="0.1"
|
|
:max="1"
|
|
:step="0.1"
|
|
@change="updateConfig({ fontSize })"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
import type { PropType } from "vue";
|
|
import { CardConfig } from "@/types/dashboard";
|
|
import { useI18n } from "vue-i18n";
|
|
|
|
/*global defineProps, defineEmits */
|
|
const { t } = useI18n();
|
|
|
|
const props = defineProps({
|
|
config: {
|
|
type: Object as PropType<CardConfig>,
|
|
default: () => ({ fontSize: 12 }),
|
|
},
|
|
});
|
|
const emits = defineEmits(["update"]);
|
|
const fontSize = ref(props.config.fontSize);
|
|
|
|
function updateConfig(param: { [key: string]: unknown }) {
|
|
emits("update", param);
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.slider {
|
|
width: 500px;
|
|
margin-top: -13px;
|
|
}
|
|
|
|
.label {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
</style>
|