[网站域名]在列表中可以查看网站域名列表,并可以筛选

This commit is contained in:
刘祥超
2020-12-07 12:11:48 +08:00
parent 4bc19f11d2
commit d98568e490
6 changed files with 85 additions and 1 deletions

View File

@@ -40,6 +40,18 @@ Vue.component("link-popup", {
template: `<a href="" :title="title" @click.prevent="clickPrevent"><slot></slot></a>`
})
Vue.component("popup-icon", {
props: ["title", "href", "height"],
methods: {
clickPrevent: function () {
teaweb.popup(this.href, {
height: this.height
})
}
},
template: `<span><slot></slot>&nbsp;<a href="" :title="title" @click.prevent="clickPrevent"><i class="icon clone outline small"></i></a></span>`
})
// 小提示
Vue.component("tip-icon", {
props: ["content"],