You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 1234567891011121314 |
- /**
- * @Author: Caven
- * @Date: 2021-07-14 20:25:41
- */
-
- import DrawTool from './DrawTool'
- import EditTool from './EditTool'
-
- export default function createTools() {
- return {
- drawTool: new DrawTool(),
- editTool: new EditTool()
- }
- }
|