feat: add emits option

This commit is contained in:
chenjiahan 2020-07-06 15:22:33 +08:00
parent 6995bcc8a3
commit 0e4b5a0f2f
9 changed files with 24 additions and 5 deletions

View File

@ -44,6 +44,8 @@ export default createComponent({
},
},
emits: ['click', 'touchstart'],
methods: {
onClick() {
if (!this.loading && !this.disabled) {

View File

@ -2,7 +2,7 @@
<demo-section>
<demo-block :title="t('basicUsage')">
<van-cell-group>
<van-cell :title="t('cell')" :value="t('content')" />
<van-cell :title="t('cell')" :value="t('content')" @click="onClick" />
<van-cell :title="t('cell')" :value="t('content')" :label="t('desc')" />
</van-cell-group>
</demo-block>
@ -108,6 +108,12 @@ export default {
verticalCenter: 'Vertical center',
},
},
methods: {
onClick() {
console.log('click');
},
},
};
</script>

View File

@ -14,6 +14,8 @@ export default createComponent({
...routeProps,
},
emits: ['click'],
setup(props, { slots, emit }) {
return function () {
const { icon, size, title, label, value, isLink } = props;

View File

@ -15,6 +15,8 @@ export default createComponent({
},
},
emits: ['click'],
computed: {
style() {
const { index } = this;

View File

@ -31,6 +31,8 @@ export default createComponent({
},
},
emits: ['load', 'error', 'click'],
data() {
return {
loading: true,

View File

@ -39,13 +39,12 @@ export const popupMixinProps = {
export function PopupMixin(options = {}) {
return {
mixins: [
TouchMixin,
CloseOnPopstateMixin,
],
mixins: [TouchMixin, CloseOnPopstateMixin],
props: popupMixinProps,
emits: ['open', 'close', 'update:show', 'click-overlay'],
data() {
return {
inited: this.show,

View File

@ -39,6 +39,8 @@ export default createComponent({
},
},
emits: ['click', 'opened', 'closed'],
beforeCreate() {
const createEmitter = (eventName) => (event) =>
this.$emit(eventName, event);

View File

@ -20,6 +20,8 @@ export default createComponent({
},
},
emits: ['click'],
computed: {
spaces() {
const gutter = Number(this.gutter);

View File

@ -22,6 +22,8 @@ export default createComponent({
},
},
emits: ['close'],
setup(props, { slots, emit }) {
return function () {
const { type, mark, plain, color, round, size } = props;