index.vue 339 B

12345678910111213141516171819
  1. <template>
  2. <div class="app-container">
  3. <el-card shadow="never">
  4. <div slot="header">
  5. <span>前端配置</span>
  6. </div>
  7. <el-empty description="功能开发中,敬请期待" />
  8. </el-card>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'AdminFrontConfig',
  14. data() {
  15. return {}
  16. }
  17. }
  18. </script>