Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wisdom-components
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ReactWeb5
wisdom-components
Commits
96f9e19b
Commit
96f9e19b
authored
Oct 15, 2024
by
李纪文
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: gojs组件
parent
1e934929
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
80 additions
and
0 deletions
+80
-0
config.js
config/config.js
+1
-0
README.md
packages/base-components/Gojs/README.md
+11
-0
package.json
packages/base-components/Gojs/package.json
+37
-0
Gojs.md
packages/base-components/Gojs/src/Gojs.md
+13
-0
base.tsx
packages/base-components/Gojs/src/demos/base.tsx
+18
-0
No file name available
+0
-0
No files found.
config/config.js
View file @
96f9e19b
...
...
@@ -108,6 +108,7 @@ export default {
'DataCarousel'
,
'VmsVideo'
,
'VideoSliderModal'
,
'Gojs'
,
],
},
{
...
...
packages/base-components/Gojs/README.md
0 → 100644
View file @
96f9e19b
# `@wisdom-components/gojs`
> TODO: description
## Usage
```
const gojs = require('@wisdom-components/gojs');
// TODO: DEMONSTRATE API
```
packages/base-components/Gojs/package.json
0 → 100644
View file @
96f9e19b
{
"name"
:
"@wisdom-components/gojs"
,
"version"
:
"1.0.0"
,
"description"
:
"> TODO: description"
,
"author"
:
"lijiwen <961370825@qq.com>"
,
"homepage"
:
""
,
"license"
:
"ISC"
,
"sideEffects"
:
[
"*.less"
],
"module"
:
"es/go.js"
,
"main"
:
"lib/go.js"
,
"files"
:
[
"lib"
,
"es"
,
"dist"
],
"directories"
:
{
"lib"
:
"lib"
,
"es"
:
"es"
,
"dist"
:
"dist"
,
"test"
:
"__tests__"
},
"publishConfig"
:
{
"registry"
:
"https://g.civnet.cn:4873/"
},
"repository"
:
{
"type"
:
"git"
,
"url"
:
"https://g.civnet.cn:8443/ReactWeb5/wisdom-components.git"
},
"scripts"
:
{
"test"
:
"echo
\"
Error: run tests from root
\"
&& exit 1"
},
"dependencies"
:
{
"@babel/runtime"
:
"^7.17.9"
}
}
packages/base-components/Gojs/src/Gojs.md
0 → 100644
View file @
96f9e19b
---
title
:
Gojs - gojs用法
nav
:
title
:
基础组件
path
:
/components
group
:
path
:
/
---
# PandaGojs gojs 使用
<code
src=
"./demos/base.tsx"
>
\ No newline at end of file
packages/base-components/Gojs/src/demos/base.tsx
0 → 100644
View file @
96f9e19b
/*
* @Author: ljiwen
* @Date: 2024-10-15 09:46:58
* @Description:
* @FilePath: \wisdom-components\packages\base-components\Gojs\src\demos\base.tsx
*/
import
React
,
{
useEffect
}
from
'react'
;
const
GojsDemo
=
(
props
)
=>
{
return
(
<>
<
span
>
{
`使用说明:import go from "@wisdom-components/gojs";`
}
</
span
>
</>
);
};
export
default
GojsDemo
;
View file @
96f9e19b
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment