var data = [
{
id: 1,
title: '标题1',
content: '内容1'
},
{
id: 2,
title: '标题2',
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<ul> | |
<li | |
v-for="(item, index) in comments" | |
:key="index" | |
> | |
<p>{{ item.content }}</p> | |
<ul |