import { defineComponent, computed, ref } from "vue"; import Test from '@/test.tsx'; export default defineComponent({ name: "app-root", setup() { const count = ref(0); const countDouble = computed(() => count.value * 2); count.value++; return () => (
Count: {count.value}
Count Double: {countDouble.value}
); }, });