Skip to content

Commit

Permalink
feat: add 600 delay
Browse files Browse the repository at this point in the history
  • Loading branch information
meloalright committed Aug 17, 2024
1 parent 3fbd6e6 commit 117dc0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vue-playground/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
</div>
<VueLive
:editorProps="{ lineNumbers: true }"
:delay="600"
:code="!loading && !debug ? code : LoadingCode"
:layout="CustomLayout"
:components="{
Expand Down Expand Up @@ -169,7 +170,7 @@ export default defineComponent({
},
methods: {
input(event: any) {
this.code = event.target._value;
// this.code = event.target._value;
},
copy() {
try {
Expand Down

0 comments on commit 117dc0e

Please sign in to comment.