rule.vue 980 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <div>
  3. <ul>
  4. <!-- 遍历转换后的数组 -->
  5. <li v-for="(item, index) in formattedItems" :key="index">
  6. {{ item.item }}, 高度: {{ item.height }}
  7. </li>
  8. </ul>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. // 原始数组
  16. items: [
  17. ['绿色', '中'],
  18. ['绿色', '中'],
  19. ['绿色', '中'],
  20. ['绿色', '中'],
  21. ['绿色', '中'],
  22. ['绿色', '中']
  23. ],
  24. // 转换后的数据
  25. formattedItems: []
  26. };
  27. },
  28. created() {
  29. this.formatItems();
  30. },
  31. methods: {
  32. formatItems() {
  33. // 遍历原始数组并转换格式
  34. this.items.forEach(item => {
  35. // 创建新的item对象并添加到formattedItems数组中
  36. this.formattedItems.push({
  37. item: `${item[0]},${item[1]}`,
  38. height: '' // 假设高度为20
  39. });
  40. });
  41. console.log(this.formattedItems);
  42. }
  43. }
  44. };
  45. </script>