Skip to content
New issue

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

fix: 使用import动态导入有cdn的工具类 #133

Merged
merged 9 commits into from
Dec 22, 2023
4 changes: 2 additions & 2 deletions packages/plugins/bridge/src/BridgeSetting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export default {
if (state.name && state.name === state.content.exportName) {
importName = `{ ${state.content.exportName || 'exportName'} }`
} else {
importName = `{ ${state.content.exportName || 'exportName'} } as ${name}`
importName = `{ ${state.content.exportName || 'exportName'} as ${name} }`
}
}

Expand Down Expand Up @@ -261,7 +261,7 @@ export default {
const deleteReSource = () => {
confirm({
title: '删除资源',
message: '删除资源可能会导致预览失败,您确认删除该资源吗?',
message: '如果您删除了正在使用的资源,将无法正常预览页面。您确认要删除吗?',
gene9831 marked this conversation as resolved.
Show resolved Hide resolved
exec: () => {
deleteData(state.name, closePanel, emit)
}
Expand Down