You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
506 B
Plaintext

9 months ago
<template>
<div id="demo">
<span @click="mm">
<flowRender :msg="data" ></flowRender>
</span>
</div>
</template>
<script>
export default {
name:'demo',
data() {
return {
};
},
beforeCreate() {
},
created() {
},
methods: {
},
//监听
computed: {
},
components: {
},
//监听后执行动作
watch: {
}
}
</script>
<style lang="less" scoped>
</style>