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"
236236### Contributing
237237We'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.
238238Here 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
245247If 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 {
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
You can’t perform that action at this time.
0 commit comments