Wallet.vue 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--
  2. Copyright 2019 Hackware SpA <human@hackware.cl>
  3. This file is part of "Hackware Userland" and licensed under the terms
  4. of the GNU Affero General Public License version 3, or (at your option)
  5. a later version. You should have received a copy of this license along
  6. with the software. If not, see <https://www.gnu.org/licenses/>.
  7. -->
  8. <template>
  9. <div class="wallet">
  10. <h2>Mi billetera</h2>
  11. <WalletOverview />
  12. <div class="text-right mt-1">
  13. <router-link
  14. id="addFundsBtn"
  15. to="/add-funds"
  16. >
  17. Añadir fondos
  18. <i class="fas fa-plus-square" />
  19. </router-link>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. import WalletOverview from '@/components/WalletOverview.vue';
  25. export default {
  26. name: 'Wallet',
  27. components: {
  28. WalletOverview,
  29. },
  30. };
  31. </script>
  32. <style lang="scss">
  33. @import "../assets/bootstrap/custom";
  34. .wallet {
  35. @extend .pt-3;
  36. #addFundsBtn {
  37. @extend .btn;
  38. @extend .btn-lg;
  39. @extend .btn-primary;
  40. }
  41. }
  42. </style>