升级ui vue3版本

This commit is contained in:
吕金泽
2022-03-05 10:42:10 +08:00
parent 4b2134065e
commit 8b8095b91a
367 changed files with 135973 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
export const testCode = `
<template>
<div class="aaa">
{{ msg }}
<el-button type="primary" @click="$emit('xxClick')">阿斯顿发</el-button>
{{ props.aaaaaa }}
</div>
</template>
<script setup>
const msg = '11111'
const props = defineProps({
aaaaaa: String
})
</script>
<style scoped>
.aaa{
font-size: 30px;
color: red;
}
</style>
`