21 lines
211 B
Vue
21 lines
211 B
Vue
<template>
|
|
<div>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
|
|
props: {
|
|
page: Object,
|
|
title: String,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
|