Skip to content

Commit

Permalink
chore: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
nemo-shen committed Jan 6, 2024
1 parent 6ae3061 commit b8b33d3
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,26 +49,6 @@ function reload() {
defineExpose({ reload });
watchEffect(() => history.replaceState({}, '', store.serialize()));
const panelSize = ref(25);
const onResizePanel = (event: { size: number }[]) => {
panelSize.value = event[0].size;
};
// const panelConfig = computed(() => {
// const eidtorSize = 100 - panelSize.value;
// return {
// output: {
// size: panelSize.value,
// minSize: 20,
// },
// editor: {
// size: 100 - 20 - panelSize.value,
// minSize: 20,
// },
// console: {
// size: 100 - panelSize.value -
// },
// };
// });
</script>

<template>
Expand Down Expand Up @@ -118,7 +98,6 @@ body {
--nav-height: 50px;
}
.splitpanes__pane {
// box-shadow: 0 0 3px rgba(0, 0, 0, .2) inset;
justify-content: center;
align-items: center;
display: flex;
Expand Down

0 comments on commit b8b33d3

Please sign in to comment.