mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-30 06:46:35 +08:00
17 lines
491 B
HTML
17 lines
491 B
HTML
|
|
{$layout "layout_popup"}
|
||
|
|
|
||
|
|
<h3>域名支持的线路</h3>
|
||
|
|
|
||
|
|
<table class="ui table definition selectable">
|
||
|
|
<tr>
|
||
|
|
<td class="title">线路</td>
|
||
|
|
<td>
|
||
|
|
<p class="comment" v-if="routes.length == 0">暂时还没有支持的线路。</p>
|
||
|
|
<div v-if="routes.length > 0">
|
||
|
|
<div class="ui label tiny" v-for="route in routes" style="margin-bottom: 0.5em">{{route}}</div>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<button class="ui button primary" @click.prevent="close" type="button">确定</button>
|