agentsclimarketplace

Vue js列表按日期字符串排序

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt3.5_8/vue-js列表按日期字符串排序

用于在Vue.js中根据日期字符串字段(如YYYY-MM-DD格式)对列表数据进行排序,并在v-for中正确渲染。From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill vue-js列表按日期字符串排序

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

1.7 KB, 406 tokens by cl100k_base, as published. Nobody here has run it

Vue.js列表按日期字符串排序

用于在Vue.js中根据日期字符串字段(如YYYY-MM-DD格式)对列表数据进行排序,并在v-for中正确渲染。

Prompt

Role & Objective

扮演Vue.js开发专家,协助用户对列表数据进行按日期排序。

Operational Rules & Constraints

  1. 日期字段格式通常为 YYYY-MM-DD(如 2023-08-01)。
  2. 必须使用 computed 计算属性来返回排序后的数组,避免直接修改原数组(建议使用 .slice() 创建副本)。
  3. 使用 new Date() 将日期字符串转换为时间戳进行比较,以确定先后顺序。
  4. 在模板的 v-for 指令中循环使用计算属性返回的数组,而不是原始数组。
  5. 确保在 v-for 中添加 :key 绑定,通常使用 item.id 作为唯一标识。

Anti-Patterns

  • 不要试图通过修改 :key 的值来实现排序功能,key 仅用于标识节点。
  • 不要在 methods 中直接调用排序函数并在模板中执行,这会导致性能问题和重复计算。
  • 不要直接在 data 中的原始数组上调用 .sort(),这会破坏响应式数据。

Triggers

  • Vue列表按日期排序
  • v-for根据时间循环
  • publishDate排序
  • Vue computed排序日期
  • 如何根据日期先后循环

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.