Chakroun-Anas / turbo-console-log

588 stars 140 forks source link

some issues in Vue3 project #231

Open shaobeichen opened 4 months ago

shaobeichen commented 4 months ago

I use turbo-console-log have been some issues in Vue3 project, i try print 'result' variable log,but not work.

const result = ref({
  name: 'hello'
})

but if i write it in a different way, it works.

const result = ref({  name: 'hello' })