UNPKG

bytee-quiz

Version:

Simple Quiz app powered by Vue.js and Spectre.css.

17 lines (16 loc) 266 B
/** * Simple helper for Questions */ export default { name: 'Question', methods: { indexToLetter(num) { return this.abc[num]; }, }, data() { return { abc: ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L'], }; }, };