btnSubmit.vue 551 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="btn_sub">
  3. <button> 提交</button>
  4. </div>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return {
  10. msg:''
  11. }
  12. },
  13. methods:{
  14. addClass: function(index){
  15. this.current=index; // 不能要引号
  16. }
  17. },
  18. }
  19. </script>
  20. <style>
  21. .btn_sub{
  22. width: 100%;
  23. padding: 0 1.5rem;
  24. }
  25. .btn_sub button{
  26. border-radius: 0.4rem;
  27. height: 4rem;
  28. line-height: 4rem;
  29. text-align: center;
  30. width: 100%;
  31. background-color: #ff5c5c;
  32. outline: none;
  33. border: 0;
  34. color: #fff;
  35. font-size: 1.6rem;
  36. }
  37. </style>