fix(docs): fix code not working in Codepen (#4678) (#4679)

fix #4678
This commit is contained in:
imguolao
2021-12-07 17:37:46 +08:00
committed by GitHub
parent d2ab3844b6
commit 124b4b8abc

View File

@@ -8,7 +8,7 @@ import { defineComponent, ref } from 'vue'
export default defineComponent({
setup() {
const num = ref(1)
const handleChange = (value: string) => {
const handleChange = (value) => {
console.log(value)
}
return {