You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
373 B

  1. @typeparam T
  2. <div class="row">
  3. <div class="col form-control-box">
  4. <input type="text" class="form-control" placeholder="عنوان" >
  5. @* <ValidationMessage For="@(() => FieldOfModel)"/> *@
  6. </div>
  7. </div>
  8. @code {
  9. [Parameter]
  10. public string FieldOfModel { get; set; }
  11. [Parameter]
  12. public EventCallback<T> FieldOfModelChanged { get; set; }
  13. }