My SMM panel
 
 
 
 
 
 

39 lines
1.0 KiB

  1. <template>
  2. <div>
  3. <div class="services-menu">
  4. <button class="selected">Services</button>
  5. <button>Credits</button>
  6. <div class="menu-slider">
  7. <div></div></div>
  8. </div>
  9. <div class="services-legend"><h5>Name</h5>
  10. <h5>Credits per 1000</h5><h5>Min Qt.</h5><h5>Max Qt.</h5></div>
  11. <section class="services-pane youtube">
  12. <h4>Youtube</h4>
  13. <ul>
  14. <li><span>Unique Views and Engagements</span><span>11</span><span>1000</span><span>500,000</span>
  15. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-square-fill" viewBox="0 0 16 16">
  16. <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z"/>
  17. </svg>
  18. </li>
  19. </ul>
  20. </section>
  21. <section class="services-pane instagram">
  22. <h4>Instagram</h4>
  23. </section>
  24. <section class="services-pane twitter">
  25. <h4>Twitter</h4>
  26. </section>
  27. </div>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {servicePane: true}
  33. },
  34. props: ['orders']
  35. }
  36. </script>