import { computed, defineComponent, ref } from "vue"; 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}

Go to this other site hosted here but a different Vue app!

); }, });