Skip to content

Commit

Permalink
fix: fixed splitpanes setting
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoluoboding committed Jun 2, 2021
1 parent ac0c267 commit 8765672
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions packages/sandbox/Sandbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
<Splitpanes
class="sandbox default-theme"
:style="sandboxStyles"
:dbl-click-splitter="false"
@resized="handleResized"
>
<Pane min-size="20">
<Pane min-size="20" max-size="80" >
<SandboxEditor :sfc-filename="sfcFilename" :sfc-code="sfcCode" />
</Pane>
<Pane min-size="80">
<Pane min-size="20" max-size="80">
<SandboxPreview :sfc-filename="sfcFilename" :sfc-code="sfcCode" v-show="esModules" />
</Pane>
</Splitpanes>
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"app/**/*.ts",
"app/**/*.tsx",
"app/**/*.vue",
"packages/**/*.ts",
"packages/**/*.vue",
// "packages/**/*.ts",
// "packages/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"scripts/**/*.ts"
Expand Down

0 comments on commit 8765672

Please sign in to comment.