November 2019
Beginner
804 pages
20h 1m
English
Before we can use the MusicService in our Home view, we need to inject it. Since we have already configured InversifyJS, we can do that really quickly:
import {MusicService} from '@/services';
import {TYPES} from '@/ioc/types';
import {lazyInject} from '@/ioc/config';
@lazyInject(TYPES.MUSIC_SERVICE) private musicService!: MusicService;
public mounted() { console.log('Home component mounted'); console.log('Music service ...Read now
Unlock full access