You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
272 B

<template>
<div class="home">
<div class="card col-md-10 offset-md-1">
<div class="card-body">
<slot></slot>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'ContentBase',
}
</script>
<style scoped>
</style>