首页 前端知识 uniapp Vue3 setup 报错 [plugin:commonjs] Expected ‘,‘ or ‘}‘ after property value in JSON at position

uniapp Vue3 setup 报错 [plugin:commonjs] Expected ‘,‘ or ‘}‘ after property value in JSON at position

2024-07-20 17:07:20 前端知识 前端哥 453 190 我要收藏

一般情况下uniapp vue2 是可以自动引入的:

然后我在index.vue 文件中这样引入组件:

<template>
     <view class="task-view">
          <task-list :list="taskList"></task-list>
     </view>
</template>

<script setup>
import { ref, getCurrentInstance } from 'vue';
import {
	onLoad,
	onShow
} from "@dcloudio/uni-app";

let { proxy } = getCurrentInstance();

const taskList = ref([])

可以看到上面有个变量 taskList,结果和 components 中的 task-list 组件冲突了,给我找了老半天才发现问题,把 taskList 变量改成其他名字就行了,记录一下,犯了低级错误。【北屋有雨】

转载请注明出处或者链接地址:https://www.qianduange.cn//article/14032.html
标签
评论
发布的文章

HTML5 移动开发秘籍(一)

2024-08-05 23:08:12

【HTML5系列教程】

2024-08-05 23:08:12

HTML5面试题

2024-08-05 23:08:06

JQuery基础---01

2024-08-05 23:08:34

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!