问题描述:
Failed to resolve component: smile-outlined If this is a native custom
element, make sure to exclude it from
component resolution via compilerOptions.isCustomElement.
at <DMiddle dataSource=
问题分析
组件使用了,但是未使用 import 和 注册
问题解决
<script lang="ts">
import { defineComponent } from 'vue';
import { SmileOutlined, DownOutlined } from '@ant-design/icons-vue';
export default defineComponent({
name: 'd-middle',
data() {
return {
selectedKeys: 'selectedKeys',
};
},
methods: {},
components: {
SmileOutlined,
DownOutlined,
},
});
</script>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。