Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
June 27, 2023
<template> <div class = "main-logo"> <b-button class = "logo-img" pill variant="danger" v-on:click="greet()">some text</b-button> </div> </template>
<script> export default { name: 'main-logo', methods: { greet: function () { let elementToScroll = document.getElementById("mainboard"); elementToScroll.scrollBy({ top: 0, behavior: "smooth", }); } } } </script>
<style scoped> .main-logo { position: fixed; width: 100vw; padding-top: 60px; padding-bottom: 60px; background: goldenrod; z-index: 1; } </style>