mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 15:37:33 +08:00
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
import { autoChangeTextareaSize } from '@/lib/ui.mobile.js';
|
|
|
|
export default {
|
|
mounted(el) {
|
|
autoChangeTextareaSize(el);
|
|
},
|
|
updated(el) {
|
|
autoChangeTextareaSize(el);
|
|
}
|
|
}
|