使用v-for,循环返回数据returnData,并并排展示。这个功能之后项目中要用。
小tips:
- tiny-row中的:order,与内容中的:no,配合,实现升序降序排列
- :no绑定到index上,需要写在v-for后面
- v-for写在循环的节点上,不用写在包裹它的那一个div里
{{ state.buttonLabel }}
{{item.num}}
import { ref } from 'vue'
import { Layout as TinyLayout, Row as TinyRow, Col as TinyCol, Button as TinyButton } from '@opentiny/vue'
const state = ref({
buttonLabel: '升序',
order: 'asc'
})
const服务器托管网 returnData=ref([
{
num:1,
},
{
num:2,
},
{
num:3,
},
{
num:4,
},])
function toggleOrder() {
if (state.value.buttonLabel === '升序') {
state.value.buttonLabel = '降序'
state.value.order = 'des'
} else {
state.value.buttonLabel = '升序'
state.value.order = 'asc'
}
}
.tiny-row {
margin-bottom: 20px;
}
.tiny-row .last-child {
margin-bottom: 0;
}
.tiny-col .col {
line-height: 30px;
text-align: center;
color: #fff;
background: #1f9ed8;
border-radius: 15px;
}
.tiny-col:nth-child(even) .col 服务器托管网{
background: #73d0fc;
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 微软和OpenAI将检查AI聊天记录,以寻找恶意账户
据国外媒体报道,大型科技公司及其附属的网络安全、人工智能产品很可能会推出类似的安全研究,尽管这会引起用户极度地隐私担忧。大型语言模型被要求提供情报机构信息,并用于帮助修复脚本错误和开发代码以侵入系统,这将很可能会成为常态。 由于科技巨头能够将其与伊朗、朝鲜和俄…