UNPKG
@cqmcui/cqmcui
Version:
latest (4.1.0)
4.1.0
轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)
github.com/jdf2e/cqmcui
jdf2e/cqmcui
@cqmcui/cqmcui
/
dist
/
types
/
utils
/
create
/
component.d.ts
8 lines
(7 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{ defineComponent }
from
'vue'
;
export
declare
function
createComponent
(
name
:
string
): {
componentName
:
string
;
translate
(
keyPath
:
string
, ...
args
:
unknown
[]):
string
;
create
:
typeof
defineComponent;
createDemo
:
typeof
defineComponent; };