Add question component; italic text div

master
Raymonzut 4 years ago
parent 1379d022ce
commit d9c4685b64
No known key found for this signature in database
GPG Key ID: 1E9BCC39EDD1DD53
  1. 20
      src/components/question.vue

@ -0,0 +1,20 @@
<template>
<div id='question_box'>
{{ q }}
</div>
</template>
<script>
export default {
name: 'question',
props: {
q: String
}
}
</script>
<style scoped>
#question_box {
font-style: italic;
}
</style>
Loading…
Cancel
Save