remove console log, fix lint

This commit is contained in:
ogerly 2022-09-22 17:55:17 +02:00
parent 5f5c0faa1f
commit 4045260fc3

View File

@ -59,7 +59,11 @@ export default {
},
data() {
const logosObject = {
header: { path: logos.LOGO_HEADER_PATH, alt: 'Header', widthDefault: logos.LOGO_HEADER_WIDTH },
header: {
path: logos.LOGO_HEADER_PATH,
alt: 'Header',
widthDefault: logos.LOGO_HEADER_WIDTH,
},
welcome: { path: logos.LOGO_WELCOME_PATH, alt: 'Welcome', widthDefault: '200px' },
signup: { path: logos.LOGO_SIGNUP_PATH, alt: 'Sign Up', widthDefault: '200px' },
logout: { path: logos.LOGO_LOGOUT_PATH, alt: 'Logging Out', widthDefault: '200px' },
@ -90,9 +94,6 @@ export default {
return `width: ${width};`
},
},
created() {
console.log('logoWidth', this.logoWidth)
},
}
</script>