Ejemplo n.º 1
0
        public async Task OnGetAsync()
        {
            var res = await _VocabularyService.GetRandomVocabularies(30);

            if (res.Success && res.Data != null)
            {
                Vocabs = res.Data;
            }
        }