You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<template>
|
|
<!-- 主要用于渲染子路由组件 -->
|
|
<div>
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
* 定义一个名为 BlankLayout 的 Vue 组件
|
|
* 该组件用作空白布局,通常用于需要一个干净的页面来进行特定的功能或展示
|
|
*/
|
|
export default {
|
|
name: 'BlankLayout'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* 此处添加特定于组件的样式,使用 scoped 属性确保样式仅在本组件内生效 */
|
|
</style>
|