在 Nuxt3 中,我尝试使用 asyncData(在一个更长的脚本中)。它根本没有运行(控制台中没有错误,只是没有执行)所以我尝试使用 asyncData 执行简单的任务然后获取,但两者都没有运行。安装程序运行得很好,所以页面上没有任何内容正在执行。我是 Nuxt3 的新手,所以不确定我是否犯了一个简单的错误。 (在页面中运行,而不是组件)
import { useMainStore } from '~~/store'
export default {
name: 'LandingPage',
components: {
FinalLandingPage
},
async fetch(){
console.log("fetch running")
},
setup() {
const store = useMainStore();
// console.log(store.discord)
return { store }
},
// mixins: [previousDataMixin],
async asyncData({ app }) {
console.log("running")
}