mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
9 lines
378 B
JavaScript
9 lines
378 B
JavaScript
|
|
// Action列表
|
||
|
|
Vue.component("http-firewall-actions-view", {
|
||
|
|
props: ["v-actions"],
|
||
|
|
template: `<div>
|
||
|
|
<div v-for="action in vActions" style="margin-bottom: 0.3em">
|
||
|
|
<span :class="{red: action.category == 'block', orange: action.category == 'verify', green: action.category == 'allow'}">{{action.name}} ({{action.code.toUpperCase()}})</span>
|
||
|
|
</div>
|
||
|
|
</div>`
|
||
|
|
})
|