- Options API
- Composition API
SFC (Single-File Component) or Html mode. SFC is what most use when they use Vue with a build step
// Pages.Student.Index.cs | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.AspNetCore.Mvc.RazorPages; | |
using Microsoft.EntityFrameworkCore; | |
using ContosoUniversity.Data; | |
using ContosoUniversity.Models; |
/** | |
... either means spread operator OR Rest operator | |
Spread Operator -> Expand array or Object Literal | |
Rest Operator -> Function to get all the parameter ina function | |
Basically its rest operator if you see ... in the method signature | |
**/ | |
//Add the elements of an existing array into a new array | |
var array1 = ['a','b','c'] |
<label for="job-size">How did you hear about us? | |
<select id="dropdown"> | |
<option disabled="disabled" selected="selected">Select an option</option> | |
<option value="1">NewsPaper</option> | |
<option value="2">Facebook</option> | |
<option value="1">Word of mouth</option> | |
<option value="2">other</option> | |
</select> | |
</label> |
REM This is designed for WINDOWS | |
REM run win + r, type 'shell:startup' | |
REM put the contents of this file inside, with a .bat file extension | |
REM Change the mainb to whatever branch you want to pull changes from, ie themain branch | |
REM Change featureb to whatever branch you are working on, THAT you want to keep updated with the main branch | |
REM Change repo to the file directory with your git repository. | |
SET repo="C:\Repo\CucumberLibrary\" | |
SET mainb=integration_2.1 | |
SET featureb=US365824_PPE_Lock_Workflow_Validations | |
REM No changes are needed below |
Most apps break into two categories
minikube start
kubectl cluster-info