Tweet.vue 238 B

12345678910111213141516171819
  1. <template>
  2. <li>
  3. <span>{{ topics }}</span>
  4. <br>
  5. <span>{{ text }}</span>
  6. </li>
  7. </template>
  8. <script>
  9. export default {
  10. props: {
  11. topics: String,
  12. text: String
  13. }
  14. }
  15. </script>
  16. <style></style>