vue3-core/playground/src/todo-mvc.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
188 B
Vue
Raw Normal View History

<script setup lang="ts">
import { ref } from 'vue/vapor'
interface Task {
title: string
completed: boolean
}
const tasks = ref<Task[]>([])
</script>
<template>{{ tasks }}</template>