mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-21 13:24:17 +00:00
22 lines
470 B
Vue
22 lines
470 B
Vue
<template>
|
|
<div class="app-page-title">
|
|
<div class="page-title-wrapper">
|
|
<div class="page-title-heading">
|
|
<div class="page-title-icon">
|
|
<i :class="icon"></i>
|
|
</div>
|
|
<div>
|
|
{{heading}}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['icon', 'heading'],
|
|
}
|
|
</script>
|