We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
描述bug wujie-vue3 组件局部注册时类型错误
如何复现
<template> <WujieVue width="100%" height="100%" :name="appId" :url="appPath"></WujieVue> </template> <script lang="ts"> import { defineComponent } from 'vue'; import WujieVue from "wujie-vue3"; export default defineComponent({ components: { WujieVue }, props: { app: { type: String, default: '' }, appPath: { type: String, default: '' } }, }
错误截图
最小复现仓库或者地址
The text was updated successfully, but these errors were encountered:
改了vue2的忘了改vue3的了,可以先 ignore 一下
Sorry, something went wrong.
fix: 修复 vue3 组件注册时类型错误 (Tencent#393)
b6bea4d
临时方案是只能通过 @ts-nocheck 关闭整个文件的类型检测...
<script lang="ts"> // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-nocheck import { defineComponent, computed } from 'vue'; import WujieVue from "wujie-vue3";
fix: 修复 vue3 组件注册时类型错误 (#393) (#394)
6487308
No branches or pull requests
描述bug
wujie-vue3 组件局部注册时类型错误
如何复现
错误截图
最小复现仓库或者地址
The text was updated successfully, but these errors were encountered: