将 computed 属性转换为 <script setup> 格式
<script setup>
const slideWidth = ref(0)
const sliderToLeftStyle = computed(() => ({
left: `${slideWidth.value}px`
}))
const sliderLeftWidthStyle = computed(() => ({
width: `${slideWidth.value + 28}px`
}))
</script>
原文地址: https://www.cveoy.top/t/topic/nmB3 著作权归作者所有。请勿转载和采集!