mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-22 03:26:38 +08:00
23 lines
291 B
Handlebars
Executable File
23 lines
291 B
Handlebars
Executable File
{{#if isFilesystem}}
|
|
<route lang="yaml">
|
|
meta:
|
|
title: 页面标题
|
|
</route>
|
|
|
|
{{/if}}
|
|
<script setup lang="ts">
|
|
defineOptions({
|
|
name: '{{ properCase componentName }}',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<!-- 布局 -->
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
// 样式
|
|
</style>
|