mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2026-05-15 00:00:02 +08:00
23 lines
411 B
JavaScript
23 lines
411 B
JavaScript
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>
|
|
` |