UNPKG
data-center-components
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
0.1.0
自定义组件库
github.com/jz991724/user-defined-components
data-center-components
/
packages
/
supconit-block-title
/
index.js
8 lines
•
304 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// 导入组件,组件必须声明 name
import
SupconitBlockTitle
from
'./src'
// 为组件提供 install 安装方法,供按需引入
SupconitBlockTitle
.
install
=
function
(
Vue
) {
Vue
.
component
(
SupconitBlockTitle
.
name
,
SupconitBlockTitle
) }
// 导出组件
export
default
SupconitBlockTitle