12 lines
152 B
Vue
12 lines
152 B
Vue
<script setup>
|
|
|
|
import Branding from '../components/Branding.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="content">
|
|
<Branding />
|
|
</div>
|
|
</template>
|