11 lines
		
	
	
		
			302 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			302 B
		
	
	
	
		
			JavaScript
		
	
	
	
| import {reactive} from 'vue';
 | |
| 
 | |
| let diffTreeStoreReactive;
 | |
| export function diffTreeStore() {
 | |
|   if (!diffTreeStoreReactive) {
 | |
|     diffTreeStoreReactive = reactive(window.config.pageData.diffFileInfo);
 | |
|     window.config.pageData.diffFileInfo = diffTreeStoreReactive;
 | |
|   }
 | |
|   return diffTreeStoreReactive;
 | |
| }
 |