组件设计风格
要求 Element 元素统一使用El后缀
// ✗ bad
const elem = this.$el;
const element = e.target;
const input = this.$refs.input
// ✓ good
const el = this.$el;
const el = e.target;
const inputEl = this.$refs.input;
// ✗ bad
const elem = this.$el;
const element = e.target;
const input = this.$refs.input
// ✓ good
const el = this.$el;
const el = e.target;
const inputEl = this.$refs.input;