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.
21 lines
449 B
21 lines
449 B
<template>
|
|
<div class="container">
|
|
<div class="header">header</div>
|
|
<div class="content">
|
|
<slot></slot>
|
|
</div>
|
|
<div class="footer">footer</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
title: 'title'
|
|
}
|
|
},
|
|
mounted: function () {
|
|
console.log('layout.html');
|
|
}
|
|
}
|
|
</script> |