页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
languagejs
linenumberstrue
<template>
	<div>	
	</div>
</template>

<script>
export default {
    name: "buttonOpr",
    methods: {
        //当模块上的操作被用户点击的会后会调用
        async onHandle(params) {
			alert("hello world!");
        }
    }
}
</script>

<style>
</style>

...