copy-template.vue 728 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!--vue文件模板-->
  2. <template>
  3. <div class="app-container">
  4. <div class="hander_car">
  5. <div class="btn_box">
  6. <!-- <el-button type="primary" size="small" @click="query">查询</el-button>
  7. <el-button type="success" size="small" @click="handleAddCar">新增车辆</el-button> -->
  8. </div>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import {Vue,Component,Prop,Watch} from 'vue-property-decorator'
  14. @Component({
  15. name:'Car',
  16. components:{}
  17. })
  18. export default class template extends Vue {
  19. mounted() {
  20. }
  21. created() {
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .hander_car{
  27. // display: inline-block;
  28. line-height: 54px;
  29. }
  30. .btn_box{
  31. display: inline-block;
  32. margin-left: 20px;
  33. }
  34. </style>