Creates a Table with 500 rows which can scroll.
For the scrolling part just add a scrollbar:
Code review for "Kili196/CV-Generator"
The project is built using vanilla React.js, HTML, & CSS + Vite
Answer to
# version 3
import reRESPONSE:
| // ------------- component (template) ---------------- | |
| <v-chip id='example-chip' v-show="showChip">Example Chip</v-chip> | |
| <v-btn color="info" @click="showChip = true">Click Me</v-btn> | |
| // ------------- component (data) ---------------- | |
| data: () => ({ | |
| showChip: false, | |
| name: "mike" |
| // EC-3248: POST => spots/v1/ | |
| public createSpot(spot: Spot): Observable<string> { | |
| const formData: FormData = new FormData(); | |
| _.map(spot.filesToUpload, (toUpload: FileToUpload) => formData.append('files', toUpload.file, toUpload.file.name)); | |
| formData.append('spot', JSON.stringify(spot)); | |
| return this.http.post<string>(`${this._apiRoot}/spots/v1`, formData, { observe: "response"}) | |
| .pipe( | |
| tap(resp => { console.log(resp.headers); }), | |
| map(resp => { | |
| const keys = resp.headers.keys(); |
| javascript:(function(){ alert('it worked'); })(); |