Some checks failed
Build and Deploy Frontend / build-and-deploy (push) Failing after 3s
22 lines
422 B
Vue
22 lines
422 B
Vue
|
|
<template>
|
|
<b-navbar toggleable="lg" type="dark" variant="primary">
|
|
<b-container>
|
|
<b-row class="text-white">
|
|
<b-col>
|
|
<b-icon-people-fill class="h2"></b-icon-people-fill>
|
|
</b-col>
|
|
<b-col>
|
|
<span class="h3">CRM</span>
|
|
</b-col>
|
|
</b-row>
|
|
</b-container>
|
|
</b-navbar>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
export default {
|
|
name: "Header"
|
|
};
|
|
</script>
|