You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-12 13:37:35
|
|
* @LastEditTime: 2021-10-12 13:39:52
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/store/mutations.js
|
|
*/
|
|
const mutations = {
|
|
setZoom: (state, log) => {
|
|
state.$zoom = log;
|
|
}
|
|
}
|
|
|
|
export default mutations;
|