mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
18 lines
277 B
Vue
Executable File
18 lines
277 B
Vue
Executable File
<template lang="html">
|
|
<div class="main">
|
|
LEFT:<NuxtChild name="left" />:LEFT
|
|
CHILD:<NuxtChild />:CHILD
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
// eslint-disable-next-line vue/no-reserved-component-names
|
|
name: 'Main'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|