var vms = Vue.component("Company-amplify-cbcsfb", { template: `
`, props: { }, data() { return { show:false, } }, mounted(){ }, methods: { openAmplify(){ this.show = true // this.getProject() }, closeAmplify(){ this.show = false }, closeAmplifyAll(e){ if(e.target.className == 'amplify-fixed'){ this.show = false } } }, watch:{ }, })