我正在使用一个没有Vue.js包装器的库。库以动态的方式在DOM中追加元素。
我希望能够用Vue将v-model属性绑定到这些元素,并在我的模型中添加它们。
我过去曾在其他反应性框架(如Knockout.js )中这样做过,但我无法找到一种使用vue.js的方法。
这样做有报酬吗?这应该是我认为的几行之一:
var div = document.createElement('div');
div.setAttribute('v-model', '{{demo}}');
[VUE CALL] //tell vue.js I want to use
将动态生成的日期传递给jQuery
我可以在vue.js中做同样的事情,但我不得不在jQuery中做这件事,我被难住了。
在我的jquery中,这只显示当前日期
var newdate1 = $('#formatteddate');
newdate1 = moment().format('DD/MM/YYYY')
console.info(newdate1);
This is my html
<div class="eight wide column" id="formatteddate">
Insurance ex
我想等待用户的点击使交互内容。
下面的代码是使用vanilla的示例。
但是使用Vue.js,我不能动态地向特定的dom元素添加事件侦听器。
那么,我怎样才能用Vue.js实现这个目标呢?
async mainTask(){
//something...
showText.innerText += "please input value and then click ok button.\n";
const input = await waitInput();
//...
}
async function waitInput() {
return ne