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
| DATABASE_HOST=mysql | |
| MYSQL_DATABASE=sendy | |
| MYSQL_USER=root | |
| MYSQL_ROOT_PASSWORD=root |
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
| //Component | |
| import Counter from '../store/counter'; | |
| export default { | |
| data() { | |
| return { | |
| }; | |
| }, | |
| computed: { | |
| counter() { |
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
| /* This is the main Vue instance */ | |
| /* Components imports */ | |
| import Calendar from './calendar'; //in the calendar folder index.js imported | |
| import OtherComponent from './other-component'; //you can import other components | |
| /* Main app initalization */ | |
| let app = new Vue({ // eslint-disable-line no-unused-vars | |
| el: '#app', | |
| data() { |
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
| export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxBxDxCxegedabagacad |