HACKER
TALK
Home
Channels
beta
Bookmarks
Messages
Notifications
Sign In
hackrabbit
hackrabbit
hackrabbit
hackrabbit
Joined 3 years ago
0 Following0 Followers
JuneJulyAugSeptOctNovDecJanFebMarAprMay
PostsCommentsChannels
hackrabbit
hackrabbit
·3 years ago
<script setup>
import { reactive } from 'vue'

const myObject = reactive({
  title: 'How to do lists in Vue',
  author: 'Jane Doe',
  publishedAt: '2016-04-10'
})
</script>

<template>
	<ul>
    <li v-for="(value, key, index) in myObject">
		  {{ index }}. {{ key }}: {{ value }}
		</li>
  </ul>
</template>

官网不是有说明吗?

vue需要先声明啦

Terms of ServicePrivacy PolicyCookie PolicyMarkdown SyntaxUser PointsUser Feedback© 2025 Shware Inc.