Skip to content

Commit

Permalink
chore: repl style add scoped (#4925)
Browse files Browse the repository at this point in the history
* chore: repl style add scoped

* fix: judgment condition
  • Loading branch information
btea committed Apr 1, 2023
1 parent c2cda42 commit 0bcf0a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/repl/components/ReplMain.vue
Expand Up @@ -9,7 +9,7 @@
<div class="right">
<h2>
...
{{ rollupOutputStore.output.length > 1 ? 'chunks come' : 'bundle comes' }}
{{ rollupOutputStore.output.output.length > 1 ? 'chunks come' : 'bundle comes' }}
out
</h2>
<div class="output">
Expand Down Expand Up @@ -44,7 +44,7 @@ onUnmounted(() => {
});
</script>

<style>
<style scoped>
button {
font-family: inherit;
font-size: inherit;
Expand Down

0 comments on commit 0bcf0a6

Please sign in to comment.