一部分内容

This commit is contained in:
2020-11-06 22:30:17 +08:00
parent 8e146606da
commit a75e5a3c02
9 changed files with 148 additions and 14 deletions

View File

@@ -13,7 +13,7 @@
</div>
<div class="icons">
<img src="@/static/images/camera.png" alt="" class="icon">
<img src="@/static/images/camera.png" @click="sendmasg" alt="" class="icon">
<img src="@/static/images/vol.png" alt="" class="icon">
</div>
</div>
@@ -147,5 +147,14 @@
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({});
export default defineComponent({
setup(prop,context){
function sendmasg(){
context.emit("sentext")
}
return {
sendmasg
}
}
});
</script>