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
| import Vue from 'vue' | |
| import Vuex from 'vuex' | |
| Vue.use(Vuex) | |
| /** | |
| * @interface StoreState | |
| */ | |
| export interface StoreState { | |
| [key: string]: any |
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 default { | |
| /** | |
| */ | |
| props: { | |
| value: { | |
| type: [String, Number], | |
| default: '' | |
| }, | |
| name: { | |
| type: String, |
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
| opcache.validate_timestamps=0 | |
| opcache.save_comments=0 | |
| opcache.enable_cli=1 | |
| opcache.enable_file_override=1 | |
| opcache.file_cache=/app/opcache |
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
| import Schema from 'src/app/Agnostic/Schema' | |
| import { orderPath } from './routeFile' | |
| import { amount, customer, payments, status } from 'src/domains/Order/helperTable' | |
| import { hookFetchRecord, statuStyling, statusFormatting } from 'src/domains/Order/helperForm' | |
| import $lang from 'src/lang' | |
| import OrderCustomer from './Components/OrderConsumer.vue' | |
| import OrderItems from './Components/OrderItems' | |
| const OrderDetails = () => import('src/domains/Order/Components/OrderDetails.vue') |
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
| import Schema from 'src/app/Agnostic/Schema' | |
| import MovieService from 'src/domains/Example/Movie/MovieService' | |
| import { moviePath } from 'src/domains/Example/Movie/routeFile' | |
| /** | |
| */ | |
| export default class MovieSchema extends Schema { | |
| /** | |
| * @type {string} |
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
| # ~> .docker/quasar/Dockerfile | |
| FROM node:10-alpine | |
| RUN apk --update add openssh-client git | |
| # https://www.npmjs.com/package/@vue/cli | |
| # https://www.npmjs.com/package/@vue/cli-init | |
| RUN npm install --global\ | |
| vue-cli\ | |
| @vue/[email protected]\ |
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
| import { Calendar } from '@fullcalendar/core'; | |
| import dayGridPlugin from '@fullcalendar/daygrid'; | |
| const calendar = { | |
| loadEventos() { | |
| AppCompromissos.showTabAgenda(); | |
| AppCompromissos.showCalendar(); | |
| }, | |
| showTabAgenda(){ | |
| $(".nav-tabs a").click(function(){ |
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 | |
| namespace App\Database\Migration; | |
| use App\Database\Migration; | |
| use App\Database\Schema; | |
| use App\Database\Table; | |
| use Illuminate\Database\Schema\Blueprint; | |
| /** |
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
| import { CreateElement } from 'vue' | |
| /** | |
| * @interface {Field} | |
| */ | |
| export interface Field { | |
| label?: string, | |
| key?: string, | |
| tableAvailable?: boolean |
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
| import axios from 'axios' | |
| // window.axios = require('axios') | |
| import config from '@/config' | |
| import JwtToken from '@/services/jwt-token' | |
| import $store from '@/store' | |
| import config from '@/config' | |
| const http = axios.create({ | |
| baseURL: config.apiUrl, | |
| // timeout: 1000, |