初始化

This commit is contained in:
qsh
2023-02-15 09:17:05 +08:00
parent eebc6c8e4c
commit a7606b1f20
301 changed files with 23347 additions and 2 deletions

14
src/mixins/Mixin.vue Normal file
View File

@@ -0,0 +1,14 @@
<script>
export default {
name: 'Mixin',
data() {
return {
defaultPageSize: this.$global.defaultPageSize
};
},
mounted() {},
methods: {}
};
</script>
<style scoped></style>