mirror of https://github.com/vuejs/core.git
12 lines
188 B
Vue
12 lines
188 B
Vue
|
<script setup lang="ts">
|
||
|
import { ref } from 'vue/vapor'
|
||
|
|
||
|
interface Task {
|
||
|
title: string
|
||
|
completed: boolean
|
||
|
}
|
||
|
const tasks = ref<Task[]>([])
|
||
|
</script>
|
||
|
|
||
|
<template>{{ tasks }}</template>
|