Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seeksdream/relation-graph-vue2-demo
relation-graph-vue2-demo
https://github.com/seeksdream/relation-graph-vue2-demo
Last synced: 18 days ago
JSON representation
relation-graph-vue2-demo
- Host: GitHub
- URL: https://github.com/seeksdream/relation-graph-vue2-demo
- Owner: seeksdream
- Created: 2023-01-03T03:32:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T15:06:17.000Z (8 months ago)
- Last Synced: 2024-10-16T14:10:03.429Z (2 months ago)
- Language: Vue
- Size: 1.54 MB
- Stars: 8
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue 2 example
## Installation
```sh
yarn
```
## Start```sh
yarn start
```## Usage
打开并按照如下代码注释说明修改 src/App.vue
```diff
//
// 以下,你想使用哪个demo,打开对应的注释即可
import CurrentDemo from './demo/Simple';
// import CurrentDemo from './demo/Layout-force';
// import CurrentDemo from './demo/Demo4AdvLineSlot';
// 所有的demo都在../demo文件中,你想要使用哪个,像上面一样引入即可export default {
name: "App",
components: { CurrentDemo },
data() {
return {
};
},
mounted() {
},
methods: {
}
};```