主题
// 子组件 this.$emit('test', 1); // 父组件 <test @test="test($event, other)" />
// 子组件 this.$emit('test', 1, 2); // 父组件 <test @test="test(...arguments, other)" />