在vuejs.org网站上有这个功能。
我想复制它来测试我在使用jquery的表行上的on click函数中编写的一些代码。
$("#table1 tr").click(function () {
// alert($(this).text());
// alert($(this).children("td").html());
// app.greet();
});
我想在那里调用vue函数,但我的vue代码是在脚本中编写的,我使用的是像这样的导出默认值。
export default {
data() {
return {
}
etc.
}
如果我想在jquery中使用这个vue函数,我该如何调用它?
2条答案
按热度按时间kuarbcqp1#
你必须示例化应用程序,然后你可以在上面调用方法:
gkn4icbw2#