Skip to content

Commit

Permalink
fix:修复组件属性绑定工具类函数,出码预览未定义 (opentiny#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaoyun8 authored Nov 20, 2023
1 parent 5c2ea9c commit f6981fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ export default () => {

const stores = useStores()

return { t: i18n.global.t, stores, lowcodeWrap }
return { t: i18n.global.t, stores, lowcodeWrap, utils }
}
22 changes: 11 additions & 11 deletions packages/vue-generator/src/generator/page.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/**
* Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
* Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/

import { capitalize, hyphenate } from '@vue/shared'
import {
Expand Down Expand Up @@ -397,7 +397,7 @@ ${imports.join('\n')}
const props = defineProps({${propsArr.join(',\n')}})
const emit = defineEmits(${JSON.stringify(emitsArr)})
const { t, lowcodeWrap, stores } = vue.inject(I18nInjectionKey).lowcode()
const { t, lowcodeWrap, stores, utils } = vue.inject(I18nInjectionKey).lowcode()
const wrap = lowcodeWrap(props, { emit }, t)
${iconStatement}
Expand Down

0 comments on commit f6981fd

Please sign in to comment.