oops
This commit is contained in:
		
							parent
							
								
									dbc421cb57
								
							
						
					
					
						commit
						41635ca3d3
					
				
					 2 changed files with 16 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -20,5 +20,18 @@
 | 
			
		|||
 | 
			
		||||
<script lang="ts">
 | 
			
		||||
import Vue from 'vue';
 | 
			
		||||
export default Vue.extend();
 | 
			
		||||
export default Vue.extend({
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			fetching: true,
 | 
			
		||||
			apps: []
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	mounted() {
 | 
			
		||||
		(this as any).api('my/apps').then(apps => {
 | 
			
		||||
			this.apps = apps;
 | 
			
		||||
			this.fetching = false;
 | 
			
		||||
		});
 | 
			
		||||
	}
 | 
			
		||||
});
 | 
			
		||||
</script>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -84,8 +84,8 @@ export default (callback: (launch: (api?: (os: MiOS) => API) => [Vue, MiOS]) =>
 | 
			
		|||
		// アプリ基底要素マウント
 | 
			
		||||
		document.body.innerHTML = '<div id="app"></div>';
 | 
			
		||||
 | 
			
		||||
		const launch = (api: (os: MiOS) => API) => {
 | 
			
		||||
			os.apis = api(os);
 | 
			
		||||
		const launch = (api?: (os: MiOS) => API) => {
 | 
			
		||||
			os.apis = api ? api(os) : null;
 | 
			
		||||
 | 
			
		||||
			Vue.mixin({
 | 
			
		||||
				data() {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue