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 class="flex justify-center w-full h-full p-3 rounded-b-lg"> | |
| <div | |
| class="flex flex-col items-center justify-center mx-2 cursor-move" | |
| v-for="(option, index) in game.options" | |
| :key="option.id" | |
| draggable="true" | |
| @dragstart="dragStart(index)" | |
| @dragover="dragOver(index)" | |
| @dragend="dragEnd" |
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
| FROM node:13.7.0 | |
| USER root | |
| WORKDIR /app | |
| COPY package*.json ./ | |
| RUN npm install |
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
| version: "3" | |
| services: | |
| app: | |
| build: . | |
| container_name: cee_app | |
| ports: | |
| - "3333:3333" | |
| environment: |
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
| Payload / dados da requisição para criar uma company | |
| wirecardAccount = { | |
| type: 'MERCHANT', | |
| transparentAccount: true, | |
| email: { address: '[email protected]' }, | |
| person: { | |
| name: 'IGOR LUCAS', | |
| birthDate: '1986-06-18', | |
| taxDocument: { type: 'CPF', number: '12805364627' }, | |
| phone: { countryCode: '55', areaCode: '31', number: '91455975' }, |
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 VueApollo from 'vue-apollo' | |
| import { InMemoryCache } from 'apollo-cache-inmemory' | |
| import { ApolloClient } from 'apollo-client' | |
| const cache = new InMemoryCache() | |
| // Install the vue plugin | |
| Vue.use(VueApollo) |
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
| {"lastUpload":"2019-09-12T17:18:04.995Z","extensionVersion":"v3.4.2"} |
NewerOlder