|
@@ -308,6 +308,9 @@ export default {
|
|
|
RightClick (tr, td, x1, x2, y1, y2) {//鼠标右键事件
|
|
|
_that.RightClick2(tr, td, x1, x2, y1, y2)
|
|
|
},
|
|
|
+ getInformation(a,b,c) {
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
var component = new MyComponent().$mount()
|
|
@@ -318,6 +321,11 @@ export default {
|
|
|
let _that = this
|
|
|
var MyComponent = await Vue.extend({
|
|
|
template: localStorage.getItem('editElement'),
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ formData: {}
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
RightClick (tr, td, x1, x2, y1, y2) {//鼠标右键事件
|
|
|
_that.RightClick2(tr, td, x1, x2, y1, y2)
|