<html>
<head>
<title>Vue3模板</title>
<script src="https://unpkg.com/vue@3"></script>
</head>
<body>
<div id="app">{{ message }}</div>
<script>
const { createApp, ref } = Vue
createApp({
data() {
return {
message: 'Hello Vue!'
}
},
methods:{
test(){
this.message = "changing"
}
},
mounted(){
/*1.必须的*/
window.test = this.test;
}
}).mount('#app')
/*外部函数中调用vue内部的函数*/
function ttt(){
test()
}
</script>
</body>
</html>
【Vue】在外部函数中调用vue内部的函数
最新推荐文章于 2022-11-17 14:18:15 发布