File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/components/dashboard_items Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -236,10 +236,12 @@ SLACK_REDIRECT_URI = "overvuedev://test"
236
236
### Contributing
237
237
We'd love for you to test this application out and submit any issues you encounter. Also feel free to fork to your own repo and submit PRs.
238
238
Here are some features we're thinking about adding:
239
+ +
240
+ +
241
+ +
239
242
+ Option to export files in TypeScript
240
243
+ Ability to place child components into HTML elements
241
244
+ Integration with Storybook
242
- + Ability to add a copy of an existing component from one route to another
243
245
+ Edit State and Actions in the Vuex Store
244
246
245
247
If you make changes and wish to update the website, here is the link to the repo: https://github.com/TeamOverVue/OverVuePage
Original file line number Diff line number Diff line change @@ -42,16 +42,13 @@ export default {
42
42
methods: {
43
43
// Called by transformToTree, formats componentMap
44
44
formatComponentMap (compMap ) {
45
- // console.log('compMap', compMap)
46
45
let result = []
47
46
Object .values (compMap).forEach ((compData ) => {
48
47
result .push ({
49
48
name: compData .componentName ,
50
49
children: compData .children
51
50
})
52
51
})
53
- console .log (JSON .stringify (result))
54
- // console.log('Formatcomponent map result', result)
55
52
return result
56
53
},
57
54
// Called by buildTree, transforms componentMap
You can’t perform that action at this time.
0 commit comments