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.
iot/projects/WebMVC/wwwroot/components/layout.html

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>