123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div>
- <myContextMenu @operateDirectory="getMethod"></myContextMenu>
- </div>
- </template>
- <script>
- export default {
- components: {},
- props: {},
- data() {
- return {
- };
- },
- watch: {},
- computed: {},
- created() {},
- mounted() {},
- methods: {
- getMethod(type){
- if(this[type]){
- this[type]()
- }
- },
- //波浪线
- wave(){
-
- },
- //下划线
- underscore(){
- },
- //高亮
- highlight(){
- },
- //批注
- mark(){
- },
- //修改颜色
- changeColor(){
- },
- //对比
- contrast(){
- },
- //删除批注
- deleteMark(){
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|