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.
50 lines
572 B
Plaintext
50 lines
572 B
Plaintext
<template>
|
|
<div id="demo">
|
|
<span @click="mm">
|
|
<flowRender :msg="data" ></flowRender>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:'demo',
|
|
|
|
data() {
|
|
return {
|
|
blogTitle:'',
|
|
data:''
|
|
};
|
|
},
|
|
|
|
beforeCreate() {
|
|
|
|
},
|
|
|
|
created() {
|
|
},
|
|
|
|
methods: {
|
|
mm(){
|
|
alert("dd");
|
|
}
|
|
},
|
|
|
|
//监听
|
|
computed: {
|
|
|
|
},
|
|
|
|
|
|
components: {
|
|
},
|
|
|
|
//监听后执行动作
|
|
watch: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
</style> |