fix import path

This commit is contained in:
Timi
2026-04-02 16:52:48 +08:00
parent cdaf858a53
commit c266c9e95b
44 changed files with 180 additions and 194 deletions

View File

@@ -1,21 +1,18 @@
<template>
<div class="root">
<h2 v-popup="`提示`">test popup</h2>
<icon name="ZIP" :scale="2" disabled />
<markdown-editor class="editor" v-model:data="data" :minRows="12" :max-rows="24" />
<copyright />
</div>
<popup />
</template>
<script lang="ts" setup>
import { Icon, Popup } from "timi-web";
import MarkdownEditor from "~/components/markdown-editor/index.vue";
const data = ref("");
import { Copyright } from "timi-web";
</script>
<style lang="less" scoped>
.root {
width: 80%;
.sp {
height: 520px;
}
}
</style>