Skip to content

Commit dc29bcc

Browse files
committed
merging into origin main
1 parent e6df581 commit dc29bcc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,12 @@ SLACK_REDIRECT_URI = "overvuedev://test"
236236
### Contributing
237237
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.
238238
Here are some features we're thinking about adding:
239+
+
240+
+
241+
+
239242
+ Option to export files in TypeScript
240243
+ Ability to place child components into HTML elements
241244
+ Integration with Storybook
242-
+ Ability to add a copy of an existing component from one route to another
243245
+ Edit State and Actions in the Vuex Store
244246

245247
If you make changes and wish to update the website, here is the link to the repo: https://github.com/TeamOverVue/OverVuePage

src/components/dashboard_items/Tree.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,13 @@ export default {
4242
methods: {
4343
// Called by transformToTree, formats componentMap
4444
formatComponentMap (compMap) {
45-
// console.log('compMap', compMap)
4645
let result = []
4746
Object.values(compMap).forEach((compData) => {
4847
result.push({
4948
name: compData.componentName,
5049
children: compData.children
5150
})
5251
})
53-
console.log(JSON.stringify(result))
54-
// console.log('Formatcomponent map result', result)
5552
return result
5653
},
5754
// Called by buildTree, transforms componentMap

0 commit comments

Comments
 (0)