chore: v-bind() 前的整理文件

This commit is contained in:
Burt 2023-12-23 09:57:11 +08:00
parent 9d5552e1fe
commit 2ddde4aaeb
2 changed files with 68 additions and 83 deletions

View File

@ -14,24 +14,9 @@
<script setup lang="ts" name="TestIndex">
import { ref } from 'vue'
import { useCountStore } from '@/store/count'
import { fun, fun as yy } from '../../test/import-sort'
const countStore = useCountStore()
uni.showModal({
title: '提示',
content: '这是一个模态弹窗',
success(res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
},
})
const title = ref('Hello')
fun()
yy()
</script>
<style>