fix(PropType): fix import of PropType (#3620)
* fix(PropType): fix import of PropType * fix(propType): fix
This commit is contained in:
parent
96cd780f26
commit
22b3099cb8
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue