feature/0423
wanghousheng 8 months ago
parent 5dd7bf1d9f
commit f1bcd57f6e
  1. 6
      src/main.js

@ -26,8 +26,8 @@ Vue.prototype.pagination = {
pageSize: 15, // 每页显示条数 pageSize: 15, // 每页显示条数
showQuickJumper: true, // 显示跳转输入框 showQuickJumper: true, // 显示跳转输入框
showSizeChanger: true, showSizeChanger: true,
pageSizeOptions: ['15', '30', '50'], pageSizeOptions: ['15', '30', '50', '100'],
showTotal: total => `${total} 条记录`, showTotal: (total) => `${total} 条记录`,
} }
// mount axios to `Vue.$http` and `this.$http` // mount axios to `Vue.$http` and `this.$http`
Vue.use(VueAxios) Vue.use(VueAxios)
@ -45,5 +45,5 @@ new Vue({
store, store,
i18n, i18n,
created: bootstrap, created: bootstrap,
render: h => h(App) render: (h) => h(App),
}).$mount('#app') }).$mount('#app')

Loading…
Cancel
Save