大白莎 2022-04-27 14:19 采纳率: 60%
浏览 809

vue报错data functions should return an object:

img


<script>
import { Getzhuanli } from "@/api/api.js";
export default {
  data() {
    return {
      queryInfo: {
        query: "",
        pagenum: 1,
        pagesize: 10,
      },
      total: 0,
      data: [],
      dialogVisible: false,
      form: {},
    };
  },
  created() {
    this.getPractical();
  },
  methods: {
    getPractical() {
      Getzhuanli({ type: "发明专利" })
        .then((res) => {
          this.getList(res);
        })
        .catch((error) => {
          this.$message.error(error);
        });
    },
    getList(res) {
      // es6过滤得到满足搜索条件的展示数据list
      let list = res.filter(
        (item, index) =>
          item.ApplicationID.includes(this.queryInfo.query) ||
          item.Name.includes(this.queryInfo.query) ||
          item.Type.includes(this.queryInfo.query) ||
          item.Designer.includes(this.queryInfo.query)
      );
      console.log(list);
      this.data = list.filter(
        (item, index) =>
          index < this.queryInfo.pagenum * this.queryInfo.pagesize &&
          index >= this.queryInfo.pagesize * (this.queryInfo.pagenum - 1)
      );
      this.total = list.length;
    },
    // 搜索过滤数据
    search() {
      this.queryInfo.pagenum = 1;
      this.getList();
    },
    handleSizeChange(newSize) {
      this.queryInfo.pagesize = newSize;
      this.queryInfo.pagenum = 1;
      this.getList();
    },
    handleCurrentChange(newPage) {
      this.queryInfo.pagenum = newPage;
      this.getList();
    },
    open(row) {
      this.form = row;
      this.dialogVisible = true;
    },
  },
};
</script>

网上搜的都是data要有返回值,但是我写了呀。

  • 写回答

4条回答 默认 最新

  • Heerey525 前端领域新星创作者 2022-04-27 14:30
    关注

    问题不在这个vue组件,这个提示意思是data需要return,即下方所示代码

    <script>
    export default {
      data() {
        return {
          userInfo: {}
        }
      },
    
    }
    </script>
    
    
    评论

报告相同问题?

问题事件

  • 创建了问题 4月27日

悬赏问题

  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 C++行情软件的tick数据如何高效的合成K线
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。
  • ¥20 在easyX库下编写C语言扑克游戏跑的快,能实现简单的人机对战
  • ¥15 svpwm波形异常求解答
  • ¥15 STM32——硬件IIC从机通信代码实现