admin管理员组文章数量:1344532
I wrote a Chromium extension using clear JavaScript to interact with the DOM, but now I study VueJS and rewrote the extension to use Vue. I found one problem: there is one <input>
element connected to Vue.
I change its value via the bg.cp
property of the Vue instance, and now I need to select the DOM element. Is there any way to make text selection using the Vue instance instead of using document.getElementById('test').select()
?
The final goal is to copy the <input>
field to clipboard.
<body>
<div id="appBg">
<input v-model="cp" id="test">
</div>
<script>
//vue instance of div with input field
var bg = new Vue({
el: "#appBg",
data: {
cp: ""
}
});
</script>
</body>
I wrote a Chromium extension using clear JavaScript to interact with the DOM, but now I study VueJS and rewrote the extension to use Vue. I found one problem: there is one <input>
element connected to Vue.
I change its value via the bg.cp
property of the Vue instance, and now I need to select the DOM element. Is there any way to make text selection using the Vue instance instead of using document.getElementById('test').select()
?
The final goal is to copy the <input>
field to clipboard.
<body>
<div id="appBg">
<input v-model="cp" id="test">
</div>
<script>
//vue instance of div with input field
var bg = new Vue({
el: "#appBg",
data: {
cp: ""
}
});
</script>
</body>
Share
Improve this question
edited Aug 14, 2019 at 17:52
Sebastian Simon
19.6k8 gold badges61 silver badges84 bronze badges
asked Aug 14, 2019 at 17:43
Ryoidenshi AokigaharaRyoidenshi Aokigahara
1681 gold badge2 silver badges12 bronze badges
1
- add a reference to it, and access it that way - vuejs/v2/api/#vm-refs or codingexplained./coding/front-end/vue-js/accessing-dom-refs – muka.gergely Commented Aug 14, 2019 at 18:49
1 Answer
Reset to default 9you can use ref in DOM attribute and call it by $refs in js section
EX:
<input ref="inputName" />
and in js section call
this.$refs.inputName
here you can read explanation of it
本文标签: javascriptSelect DOM element via VueJSStack Overflow
版权声明:本文标题:javascript - Select DOM element via VueJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743760049a2534193.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论