fix(PropType): fix import of PropType (#3620)

* fix(PropType):  fix import of PropType

* fix(propType): fix
This commit is contained in:
申君健 2025-07-30 11:07:49 +08:00 committed by GitHub
parent 96cd780f26
commit 22b3099cb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 12 additions and 5 deletions

View File

@ -9,8 +9,9 @@
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
import { $props, $prefix, $setup, defineComponent, type PropType } from '@opentiny/vue-common'
import { $props, $prefix, $setup, defineComponent } from '@opentiny/vue-common'
import template from 'virtual-template?pc'
import type { PropType } from '@opentiny/vue-common'
import type { IButtonGroupNode } from '@opentiny/vue-renderless/types/button-group.type'
export const buttonGroupProps = {

View File

@ -10,6 +10,7 @@
*
*/
import { $props, $prefix, $setup, defineComponent } from '@opentiny/vue-common'
import { type PropType } from '@opentiny/vue-common'
import template from 'virtual-template?pc|mobile-first'
export const buttonProps = {

View File

@ -1,4 +1,5 @@
import { $props, $prefix, $setup, defineComponent, type PropType } from '@opentiny/vue-common'
import type { PropType } from '@opentiny/vue-common'
import { $props, $prefix, $setup, defineComponent } from '@opentiny/vue-common'
import template from 'virtual-template?pc|mobile-first'
export const pagerProps = {

View File

@ -9,7 +9,8 @@
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
import { $props, $prefix, $setup, defineComponent, type PropType } from '@opentiny/vue-common'
import type { PropType } from '@opentiny/vue-common'
import { $props, $prefix, $setup, defineComponent } from '@opentiny/vue-common'
import template from 'virtual-template?pc|mobile-first'
export const radioGroupProps = {

View File

@ -9,7 +9,8 @@
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
import { $props, $prefix, $setup, defineComponent, type PropType } from '@opentiny/vue-common'
import type { PropType } from '@opentiny/vue-common'
import { $props, $prefix, $setup, defineComponent } from '@opentiny/vue-common'
import template from 'virtual-template?pc|mobile-first'
export const $constants = {

View File

@ -9,7 +9,8 @@
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
import { $props, $prefix, $setup, defineComponent, type PropType } from '@opentiny/vue-common'
import { $props, $prefix, $setup, defineComponent } from '@opentiny/vue-common'
import type { PropType } from '@opentiny/vue-common'
import template from 'virtual-template?pc|mobile-first'
export const $constants = {

View File

@ -11,6 +11,7 @@
*/
import { $props, $setup, $prefix, defineComponent } from '@opentiny/vue-common'
import { type PropType } from '@opentiny/vue-common'
import template from 'virtual-template?pc'
export const userContactProps = {