c-select-string-value 
A dropdown component that will present a list of suggested string values from a custom API endpoint. Allows users to input values that aren't provided by the endpoint.
Effectively, this is a server-driven autocomplete list.
Examples 
<c-select-string-value 
    :model="person" 
    for="jobTitle"
    method="getSuggestedJobTitles"
/>const selectedTitle = ref<string>();<c-select-string-value 
    v-model="selectedTitle"
    label="Job Title"
    for="Person"
    method="getSuggestedJobTitles"
/>class Person 
{
    public int PersonId { get; set; } 
    public string JobTitle { get; set; }
    [Coalesce]
    public static async Task<ICollection<string>> GetSuggestedJobTitles(
      AppDbContext db, string search
    )
    {
        return await db.People
            .Select(p => p.JobTitle)
            .Distinct()
            .Where(t => t.StartsWith(search))
            .OrderBy(t => t)
            .Take(100)
            .ToListAsync()
    }
}Props 
for: string | Property | Value
for: string | Property | ValueA metadata specifier for the value being bound. One of:
- A string with the name of the bound value belonging to 
model, or a direct reference to a metadata object that describes the bound value belonging tomodel. - A string equal to the name of the type that owns the method described by 
method. Usev-modelto bind the selected string value. 
model: Model
model: ModelAn object owning the value that was specified by the for prop. If provided, the input will be bound to the corresponding property on the model object.
method: string
method: stringThe camel-cased name of the Custom Method to invoke to get the list of valid values. Will be passed a single string parameter search. Must be a static method on the type of the provided model object that returns a collection of strings.
params?: DataSourceParameters
params?: DataSourceParametersAn optional set of Data Source Standard Parameters to pass to API calls made to the server.
listWhenEmpty?: boolean = false
listWhenEmpty?: boolean = falseTrue if the method should be invoked and the list displayed when the entered search term is blank.