© 2026 Hedgehog Software, LLC
<v-btn @click="$run(Console.log('test'))">Explicit test</v-btn> <v-btn @click="Console.log('test')">Test</v-btn> <v-btn @click="() => Console.log('test')">Test cb</v-btn>
globalProperties
ComponentCustomProperties
const test = () => runPromise(Console.log('test'))
<v-btn @click="test">Explicit test</v-btn>