我想在 SAP 之后添加這個 ? 下標符號,我該怎么做?
{
number: '02',
title: 'Multiple Automation Agents ',
descriptionTwo: [
'Achieve 100% savings on infra scaling & Additional SOX Cost',
'Eliminate GUI based automation for SAP with SAP NetWeaver ABAP Automation Studio ',
'Realize speed and reliability with Low-code RPA Agent employing libraries as opposed to traditional coding',
'Conquer challenges of automation in API based systems like ServiceNow, Salesforce with API Agent',
],
},
在 html 中也是這樣:SAP<sup>?</sup>
uj5u.com熱心網友回復:
作業演示:
new Vue({
el: '#app',
data: {
message: {
number: '02',
title: 'Multiple Automation Agents ',
descriptionTwo: [
'Achieve 100% savings on infra scaling & Additional SOX Cost',
'Eliminate GUI based automation for SAP<sup>?</sup> with SAP<sup>?</sup> NetWeaver ABAP Automation Studio ',
'Realize speed and reliability with Low-code RPA Agent employing libraries as opposed to traditional coding',
'Conquer challenges of automation in API based systems like ServiceNow, Salesforce with API Agent',
]
}
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
<ul v-for="(item, index) in message.descriptionTwo" :key="index">
<li v-html="item"></li>
</ul>
</div>
轉載請註明出處,本文鏈接:https://www.uj5u.com/net/432663.html
標籤:javascript Vue.js javascript 对象 下标 支持
上一篇:如何用css向上滑動影片?
下一篇:更新嵌套陣列中的物件
