public static void EndFormDialog(this VueElementUIHelper helper)
 {
     MvcVueFormDialog.Dispose();
 }
示例#2
0
 public static MvcVueForm BeginForm(this VueElementUIHelper helper)
 {
     return(new MvcVueForm(helper.Html.ViewContext));
 }
 public static MvcVueFormDialog BeginFormDialog(this VueElementUIHelper helper, MvcVueDialog.Options options = null)
 {
     MvcVueFormDialog = new MvcVueFormDialog(helper.Html.ViewContext, options);
     return(MvcVueFormDialog);
 }