index.hbs 275 B

123456789101112131415161718192021
  1. <script setup lang="ts">
  2. defineOptions({
  3. name: '{{ properCase componentName }}',
  4. })
  5. definePage({
  6. meta: {
  7. title: '新建页面',
  8. },
  9. })
  10. </script>
  11. <template>
  12. <PageLayout navbar>
  13. <!-- 布局 -->
  14. </PageLayout>
  15. </template>
  16. <style scoped>
  17. /* 样式 */
  18. </style>