docs: remove semicolon (#5074)

This commit is contained in:
Daniel Roe 2022-05-20 10:25:38 +01:00 committed by GitHub
parent 8e59a623b8
commit f1f9c2ae59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<script setup>
const counter = useState('counter', () => Math.round(Math.random() * 1000))
const sameCounter = useState('counter');
const sameCounter = useState('counter')
</script>
<template>