gpt4 book ai didi

vue.js - vue 外部函数,将数据传入 vue

转载 作者:行者123 更新时间:2023-12-03 00:22:07 33 4
gpt4 key购买 nike

我有一个在 vue 组件外部运行的函数。我想要将它返回的数据传递给vue组件中的数据。

    <script>
function example(){
var item = 'item';
};

example();

export default {
data(){
return (this is where I want item represented)
}
}

最佳答案

查看工作演示:

var app = new Vue({
el: '#app',
data: {
item: "Hi"
}
});


function example(){
app.item='Hello How R You ?';
};
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.13/dist/vue.js"></script>

<div id="app">
<button onclick="example()" >Click ME</button>
{{ item }}
</div>

关于vue.js - vue 外部函数,将数据传入 vue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48804328/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com