UNPKG
cloud-pf
Version:
latest (1.0.3)
1.0.3
1.0.2
hcm cloud 前端框架使用知识点汇总
cloud-pf
/
webpack
/
scripts
/
service.js
11 lines
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Created by xq on 17/4/23. */
var
app =
require
(
"./app"
); app.
factory
(
"indexService"
, [
function
(
) {
return
{
"get"
:
function
(
) {
return
"indexService.get内容"
; } }; }]);