HTML代码:

<div id="app">
  <h2>任务列表</h2>
  <div v-for="(task, index) in tasks" :key="index" :class="{'reminder task': task.reminder, 'task': !task.reminder}">
    {{ task.title }}
  </div>
</div>

JavaScript代码:

new Vue({
  el: '#app',
  data: {
    tasks: []
  },
  created() {
    // 使用axios获取数据
    axios.get('tasks.json')
      .then(response => {
        this.tasks = response.data;
      })
      .catch(error => {
        console.log(error);
      });
  }
});

原文地址: https://www.cveoy.top/t/topic/bemu 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录