解决办法:
1)是否在components引用定义的组件
2)components拼写是否正确,是components不是component,注意要加s
3)引用组件name属性是否和文件名一致
4)import name form ‘XXXXX’ name名是否和components内引用名一致
5)引用组件位置是否在<template></template>或<template><div></div></template>内部
以上排查没有问题的话,尝试一下
import addZFPerson from './addZFPerson.vue';
components: { 'add-zf-person': addZFPerson },
这种写法