mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
17 lines
319 B
Vue
17 lines
319 B
Vue
<template>
|
|
<div id="__nuxt">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'nuxt-container',
|
|
head: <%= JSON.stringify(head) %>
|
|
}
|
|
</script>
|
|
|
|
<% css.forEach(function (c) { %>
|
|
<style src="<%= (typeof c === 'string' ? c : c.src) %>" lang="<%= (c.lang ? c.lang : 'css') %>"></style>
|
|
<% }) %>
|