mirror of
https://github.com/jbcr/core.git
synced 2026-04-27 18:53:17 +02:00
12 lines
212 B
Vue
12 lines
212 B
Vue
<template>
|
|
<nav class="admin__header--topbar">
|
|
<h2 class="admin__header--title" v-html="title"></h2>
|
|
</nav>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "admin-header",
|
|
props: ["title"]
|
|
};
|
|
</script> |