// UAM模式配置 Vue.component("uam-config-box", { props: ["v-uam-config", "v-is-location", "v-is-group"], data: function () { let config = this.vUamConfig if (config == null) { config = { isPrior: false, isOn: false, onlyURLPatterns: [], exceptURLPatterns: [] } } if (config.onlyURLPatterns == null) { config.onlyURLPatterns = [] } if (config.exceptURLPatterns == null) { config.exceptURLPatterns = [] } return { config: config, moreOptionsVisible: false } }, methods: { showMoreOptions: function () { this.moreOptionsVisible = !this.moreOptionsVisible } }, template: `
启用5秒盾

启用后,访问网站时,自动检查浏览器环境,阻止非正常访问。

例外URL

如果填写了例外URL,表示这些URL跳过5秒盾不做处理。

限制URL

如果填写了支持URL,表示只对这些URL进行5秒盾处理;如果不填则表示支持所有的URL。

` })