28 lines
436 B
Vue
28 lines
436 B
Vue
<template>
|
|
<client-only>
|
|
<div class="c-app flex-row align-items-center">
|
|
<CContainer>
|
|
<nuxt/>
|
|
</CContainer>
|
|
</div>
|
|
</client-only>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
head() {
|
|
return {
|
|
htmlAttrs: {
|
|
lang: 'fa',
|
|
dir: 'rtl'
|
|
},
|
|
title: 'ورود به پنل کاربری'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '../assets/admin/scss/style.scss';
|
|
</style>
|