36 lines
1019 B
Vue
36 lines
1019 B
Vue
<template>
|
|
<v-container>
|
|
<div class="h3 my-5 py-10 body-font1">Service Levels</div>
|
|
<div class="pb-5 whyte-book-font">Please reference your weekly service level email. If you do not receive this email and would like to receive it please contact Customer Service and ask to have your email address added to this mailing list.</div>
|
|
|
|
|
|
|
|
<div class="py-10">
|
|
<v-hover v-slot:default="{ hover }">
|
|
<router-link
|
|
class="text-decoration-none whyteTmin10-font"
|
|
:to="{ name: 'RetailerCommunications' }"
|
|
>
|
|
<div
|
|
:class="hover ? 'primary--text' : 'black--text'"
|
|
class="subheading"
|
|
>
|
|
Back to Retailer Communications
|
|
</div>
|
|
</router-link>
|
|
</v-hover>
|
|
</div>
|
|
</v-container>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "ServiceLevels",
|
|
methods: {
|
|
goToLink(pageLink) {
|
|
window.open(pageLink, "_blank");
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style src="./service_levels.scss" lang="scss" scoped/> |