-
Notifications
You must be signed in to change notification settings - Fork 152
feat: tabsbar component #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Features
Bug Fixes
Code Refactoring
Reverts
ContributorsCommit-Lint commandsYou can trigger Commit-Lint actions by commenting on this PR:
|
✅ Deploy Preview for circuitverse ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
…me can be changed
I have linked the |
can you also compare the nav and tabs bar with the production version? some CSS differences can be observed .. |
@@ -30,7 +30,8 @@ import HelpButton from '#/components/Panels/Shared/HelpButton.vue' | |||
import ElementProperty from '#/components/Panels/PropertiesPanel/ModuleProperty/ElementProperty/ElementProperty.vue' | |||
import ProjectProperty from '#/components/Panels/PropertiesPanel/ModuleProperty/ProjectProperty/ProjectProperty.vue' | |||
import SubcircuitPropert from '#/components/Panels/PropertiesPanel/ModuleProperty/SubcircuitProperty/SubcircuitProperty.vue' | |||
import { toRefs } from '@vue/reactivity' | |||
import { ref, toRefs } from '@vue/reactivity' | |||
import { onMounted } from '@vue/runtime-core' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we can directly import from "vue"
|
||
onMounted(() => { | ||
// checking if circuit or tab is switched | ||
setInterval(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we'd need a better way to do this, setInterval won't be a good option here,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will create an issue for it to be looked at afterward.
<button @click="createNewCircuit()">+</button> | ||
</div> | ||
<MessageBox | ||
v-model="SimulatorState.dialogBox.create_circuit" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not able to find the MessageBox component accepting v-model, can you add some context here?
fixes: #12
Progress made -
circuitName
in Properties Panel on switching between tabs.