admin管理员组文章数量:1347403
vue3 + vite2
Very simple code as below.
Expect: when click on button, change reactive msg variable.
it works expectly when development(vite), after build production(vite build) and deploy,
it seem cannot work, click method cannot access reactive msg variable.
From vuejs document, options API can work along with position API.
<template>
<h1>{{ msg }}</h1>
<button @click="click">Click</button>
</template>
<script setup>
const msg = ref('hello')
</script>
<script>
import { ref } from 'vue'
export default {
methods: {
click() {
this.msg = 'ok'
},
},
}
</script>
vue3 + vite2
Very simple code as below.
Expect: when click on button, change reactive msg variable.
it works expectly when development(vite), after build production(vite build) and deploy,
it seem cannot work, click method cannot access reactive msg variable.
From vuejs document, options API can work along with position API.
<template>
<h1>{{ msg }}</h1>
<button @click="click">Click</button>
</template>
<script setup>
const msg = ref('hello')
</script>
<script>
import { ref } from 'vue'
export default {
methods: {
click() {
this.msg = 'ok'
},
},
}
</script>
Share
Improve this question
edited Mar 30, 2022 at 10:38
Nikola Pavicevic
23.5k9 gold badges29 silver badges51 bronze badges
asked Mar 30, 2022 at 2:34
tgf2tgf2
1434 silver badges10 bronze badges
1 Answer
Reset to default 10You can bine options and position api if you return values, methods from setup function:
const { ref } = Vue
const app = Vue.createApp({
setup() {
const msg = ref('hello')
const changeMsg = () => {
return 'again'
}
return { msg, changeMsg }
},
data() {
return {
otherMsg: this.changeMsg()
}
},
methods: {
click() {
this.msg = 'ok'
},
},
})
app.mount('#demo')
<script src="https://unpkg./vue@3/dist/vue.global.prod.js"></script>
<div id="demo">
<h1>{{ msg }}</h1>
<h1>{{ otherMsg }}</h1>
<button @click="click">Click</button>
</div>
本文标签: javascriptHow to use options API along with Composition API in vue3Stack Overflow
版权声明:本文标题:javascript - How to use options API along with Composition API in vue3? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743836265a2547456.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论