This file contains hidden or 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
| <template> | |
| <div> | |
| <input v-validate data-rules="required" :class="{'has-error': errors.has("textInput")}" id="textInput" name="textInput" type="text"> | |
| <span class="error" v-show="errors.has("textInput")">{{ errors.first("textInput") }}</span> | |
| </div> | |
| </template> | |
| <script> | |
| import { find, propEq } from 'ramda' | |
| import bus from './bus' |
This file contains hidden or 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
| <?php | |
| //file: /.env.local.php | |
| // return the configuration for the 'local' environment | |
| return array( | |
| 'db_host' => '127.0.0.1', | |
| 'db_name' => 'DB_NAME', // specify database name | |
| 'db_user' => 'DB_USER', // specify database username | |
| 'db_pass' => 'DB_PASS', // specify database password | |
| ); |
This file contains hidden or 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
| 0.1: Alpha unfinished release | |
| 0.2: Request consultant section added | |
| 0.3: Stats section added | |
| 0.4: Claims section added | |
| 0.4.1: [Inc] Blog section | |
| 0.4.2: [Inc][Major] Blog section -> Footer - Rough draft completion on mobile only | |
| 0.4.3: [Inc][Major] Blog -> Company : tablet to desktop | |
| 0.4.4: [Inc][Major] Contact & charity section (tablet/desktop) | |
| 0.4.5: Final fix: Footer | |
| 0.4.5a: Sticky header |