import Vue from "vue"
export const bus = new Vue()
<template>
<div>...</div>
</template>
<script>
import {bus} from "./bus"
export default {
created(){
bus.$on('event', /* func */)
}
}
</script>
.preloader__progress {
position: relative;
overflow: hidden;
height: 40px;
width: 996px;
max-width: 90%;
margin: auto;
border: 2px solid #fff;
}
.preloader__progress-bar {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #fff;
}