jiangchengfeiyi-Web/src/views/test.vue

42 lines
726 B
Vue
Raw Normal View History

2024-11-01 05:04:02 +00:00
<template>
2024-11-11 01:29:36 +00:00
<div>
<span
:style="getStyle(1)"
@click="selectText(1)"
>
文字1
</span>
<span
:style="getStyle(2)"
@click="selectText(2)"
>
文字2
</span>
</div>
2024-11-01 05:04:02 +00:00
</template>
2024-11-11 01:29:36 +00:00
<script setup>
import { ref } from 'vue';
2024-11-11 01:29:36 +00:00
const selectedText = ref(1); // 用来存储选中的文字
// 根据选中状态动态返回样式
const getStyle = (textNum) => {
return {
'border-bottom': selectedText.value === textNum ? '2px solid black' : 'none',
'cursor': 'pointer'
};
};
const selectText = (textNum) => {
selectedText.value = textNum; // 更新选中的文字
};
</script>
<style scoped>
span {
margin-right: 10px;
padding-bottom: 5px;
}
</style>