17 lines
207 B
Vue
17 lines
207 B
Vue
|
|
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<a-card :bordered="false" :bodyStyle="{ padding: '0px 16px' }">
|
||
|
|
<nuxt />
|
||
|
|
</a-card>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "user"
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<style scoped lang="less">
|
||
|
|
|
||
|
|
</style>
|