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 () => (
Go to this other site hosted here but a different Vue app!