Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
url: function (val) {
console.log('Wappanalyzer -> LOAD:', val)
this.showLoading = true
wappalyzer.analyze(this.$store.state.Website.url)
.then(json => {
this.arrayWappalyzer = json
this.showLoading = false
})
.catch(error => {
console.error('Wappanalyzer -> ERROR:', error)
this.showLoading = false
})
}
},