mirror of
				https://github.com/Tencent/tmagic-editor.git
				synced 2025-11-01 00:57:01 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			985 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			985 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" style="font-size: 100px">
 | |
| <head>
 | |
|   <meta charset="UTF-8">
 | |
|   <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|   <link rel="icon" href="/favicon.png" type="image/png">
 | |
|   <title>Vue3 Playground</title>
 | |
|   <style>
 | |
|     html,body {margin: 0; padding: 0}
 | |
| 
 | |
|     .magic-ui-page {
 | |
|       overflow: hidden;
 | |
|     }
 | |
| 
 | |
|     ::-webkit-scrollbar {
 | |
|       width: 0;
 | |
|     }
 | |
| 
 | |
|     html,
 | |
|     body,
 | |
|     #app {
 | |
|       width: 100%;
 | |
|       height: 100%;
 | |
|     }
 | |
| 
 | |
|     #app {
 | |
|       position: relative;
 | |
|       overflow: auto;
 | |
|     }
 | |
| 
 | |
|     .magic-ui-container {
 | |
|       background-color: rgba(136, 136, 136, 0.5);
 | |
|     }
 | |
| 
 | |
|     .action-area {
 | |
|       background-color: rgba(51, 153, 255, 0.5) !important;
 | |
|     }
 | |
|   </style>
 | |
| </head>
 | |
| <body style="font-size: 14px">
 | |
|   
 | |
|   <div id="app"></div>
 | |
| 
 | |
|   <script src="https://unpkg.com/vue@next/dist/vue.global.js"></script>
 | |
| 
 | |
|   <script type="module" src="./main.ts"></script>
 | |
| </body>
 | |
| </html> |