VUE 入门
VUE 指令
VUE 方法
VUE 计算属性
VUE 观察者
VUE 扩展
VUE 组件
VUE 插槽
VUE 引用
VUE 生命周期钩子
VUE 提供/注入
VUE 路由
VUE 动画
VUE 构建

Menu
×
×
正确

练习:

引用(Refs)用于引用特定的DOM元素。

补充缺失的代码,使得应用程序挂载时,“Hello World”被显示在第二个 <p> 标签中。

<template> <p>This is just some text.</p> <p ref="pEl">This is the initial text</p> </template> <script> export default { mounted() { this.$refs.pEl.innerHTML = "Hello World!"; } }; </script>
<template> <p>This is just some text.</p> <p ref='pEl'>This is the initial text</p> </template> <script> export default { mounted() { this.$refs.pEl.innerHTML = "Hello World!"; } }; </script>

不正确

点击 此处 重试

正确

下一题 ❯
<template>
  <p>This is just some text.</p>
  <p >This is the initial text</p>
</template>

<script>
  export default {
    mounted() {
      this..pEl.innerHTML = "Hello World!";
    }
  };
</script>







×

重置分数?