How can the vue form validation judgment be optimized to the most concise?

/ / is there a better way to judge this?

  if (
    this.formSetting.ShopName
    || this.form.Value
    || this.form.arning
    || this.form.phone
    || this.form.titile
    || this.form.user
    || this.form.setting
  ) {
    Toast("");
    return;
  }
May.17,2022

you can see how element and antd abstract

Menu