UiSubmit.vue 537 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <el-row class="form-group">
  3. <el-col :span="3">&ensp;</el-col>
  4. <el-col :span="8">
  5. <button class="btn btn-info">保存</button>
  6. <!-- <button type="reset" class="btn">重置</button> -->
  7. </el-col>
  8. <el-col :span="13"></el-col>
  9. </el-row>
  10. </template>
  11. <style scoped></style>
  12. <script>
  13. export default {
  14. props: [],
  15. data() {
  16. return {
  17. };
  18. },
  19. mounted() {
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>