1234567891011121314151617181920212223242526272829 |
- <template>
- <el-row class="form-group">
- <el-col :span="3"> </el-col>
- <el-col :span="8">
- <button class="btn btn-info">保存</button>
- <!-- <button type="reset" class="btn">重置</button> -->
- </el-col>
- <el-col :span="13"></el-col>
- </el-row>
- </template>
- <style scoped></style>
- <script>
- export default {
- props: [],
- data() {
- return {
- };
- },
- mounted() {
- },
- methods: {
- }
- }
- </script>
|