HelloWorld.vue 738 B

12345678910111213141516171819202122232425262728293031
  1. <!-- Helloworld ----------------------------------------------------------- -->
  2. <template>
  3. <div class="hello">
  4. <h1>{{ msg }}</h1>
  5. <p>
  6. self-sovereign-id, an SSI prototype for business cards.
  7. Built with <a href="https://vuejs.org" target="_blank" rel="noopener">vue</a>.
  8. </p>
  9. <p>Project goals&#58;</p>
  10. <ul>
  11. <li>Multiple identities, such as having multiple business cards.</li>
  12. <li>vCard support.</li>
  13. <li>PGP for signing and encrypting communications.</li>
  14. <li>Communication media agnostic, eg email or SMS</li>
  15. <li>Blockchain or DHT agnostic</li>
  16. </ul>
  17. </div>
  18. </template>
  19. <script>
  20. export default {
  21. name: 'HelloWorld',
  22. props: {
  23. msg: String
  24. }
  25. }
  26. </script>
  27. <style scoped>
  28. </style>