如何在家长的帮助下找到孩子元素?

时间:2019-04-24 14:00:37

标签: javascript vue.js gsap

我需要使用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 }

谢谢。

1 个答案:

答案 0 :(得分:2)

方法querySelector也在HTML Element上。它不仅在document上可用。

const { svgItem } = this.$refs;
const svgPath = svgItem.querySelector('path');