-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07c14ca
commit c471278
Showing
6 changed files
with
517 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="/src/assets/stylesheets/application.scss" /> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<p>Hello There</p> | ||
<script type="module" src="/src/assets/javascript/application.js"></script> | ||
</body> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="/src/assets/stylesheets/application.scss" /> | ||
<title>Vite App</title> | ||
</head> | ||
|
||
<body> | ||
<form action=""> | ||
<tailored-select name='record[association][]' id='record_association' placeholder='Select Records'> | ||
<option value='1' selected>Record 1</option> | ||
<option value='2'>Record 2</option> | ||
<option value='3'>Record 3</option> | ||
<option value='4'>Record 4</option> | ||
<option value='5'>Record 5</option> | ||
<option value='6'>Record 6</option> | ||
<option value='7'>Record 7</option> | ||
<option value='8'>Record 8</option> | ||
<option value='9'>Record 9</option> | ||
<option value='10'>Record 10</option> | ||
</tailored-select> | ||
</form> | ||
<script type="module" src="/src/assets/javascript/application.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
import { setupCounter } from './components/counter.js' | ||
|
||
setupCounter(document.querySelector('#counter')) | ||
import './components/tailored-select.js' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.