我需要使用vue的this.$refs
访问项目,但不确定如何实现。我不想为此使用jQuery。
<template>
<div>
<svg ref="svgItem">
<path d="M899.33,118.33h-81.7v90.2h-31.3V2.07h31.3v88.5h81.7V2.07h31.29V208.53H899.33Z" />
</svg>
</div>
</template>
<script>
import { TimelineLite } from 'gsap';
export default {
mounted() {
const { svgItem } = this.$refs;
const timeline = new TimelineLite();
timeline.to(svgItem, 5, { opacity: 0.3 });
// timeline.to('${svgItem} > path', 5, { opacity: 0.3 }); // something like this :)
},
};
</script>
我知道如何使用jQuery:
const svgPath = $('#parent path');
// or may be with:
const svgPath = $('#parent').find('path');
我有点觉得我可能以querySelector
结尾,但不确定如何混合和匹配变量和字符串:
const { svgItem } = this.$refs;
const selector = document.querySelector(svgItem > 'path') // something like this :)
const timeline = new TimelineLite();
timeline.to(selector, 5, { opacity: 0.3 }
谢谢。
答案 0 :(得分:2)
方法querySelector
也在HTML Element上。它不仅在document
上可用。
const { svgItem } = this.$refs;
const svgPath = svgItem.querySelector('path');