17 lines
210 B
Vue
Executable File
17 lines
210 B
Vue
Executable File
<template>
|
|
<nuxt />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
head() {
|
|
return {
|
|
title: this.$store.state.site.siteInfo.site_name
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|