initial working version

This commit is contained in:
riqo 2021-06-16 08:42:47 -05:00
commit d963f7d8a8
23 changed files with 89 additions and 100 deletions

View file

@ -14,14 +14,22 @@
<script lang="ts">
import { postNavBarExit, postNavBarMin } from "@/render/ipc";
setup() {
// import { postNavBarExit, postNavBarMin } from "@/render/ipc";
import { defineComponent } from "vue";
export default defineComponent({
name: "Header",
setup() {
const postNavBarExit = () => {};
const postNavBarMin = () => {};
return {
postNavBarExit,
postNavBarMin
}
}
}
});
</script>
@ -78,4 +86,4 @@
.minimizeButton:active {
background-color: #c08e38;
}
</style>
</style>