Menu
×
×
正确
<template>
<p>This is just some text.</p>
<p @(9)>This is the initial text</p>
</template>
<script>
export default {
mounted() {
this.@(5).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 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> <pw3exercise_input_no_0>This is the initial text</p> </template> <script> export default { mounted() { this.w3exercise_input_no_1.pEl.innerHTML = "Hello World!"; } }; </script> |