UNPKG
bd-admin
Version:
latest (1.0.12)
1.0.12
1.0.10
1.0.0
一款能根据需求快速配置vue后台管理的脚手架
github.com/lhpCode/bd-admin
lhpCode/bd-admin
bd-admin
/
commands
/
contact
/
index.js
11 lines
(10 loc)
•
306 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
chalk
from
"chalk"
;
const
action
= (
) => {
console
.
log
(chalk.
blue
(
"你可以通过以下方式联系我"
));
console
.
log
(chalk.
blue
(
"email:"
), chalk.
bold
(
"1374487808@qq.com"
)); };
export
default
{
command
:
"contact"
,
description
:
"获取作者的联系方式"
,
action
: action, };