18 lines
214 B
Vue
18 lines
214 B
Vue
<template></template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
test() {
|
|
try {
|
|
this.ctx.callCommand(() => {
|
|
|
|
})
|
|
} catch(e) {}
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|