POST /whatever-route/3?show_kondax=true HTTP/1.1
Content-Type: application/json
{
"glossary":{
"title":"example glossary",
"GlossDiv":{
"title":"S",
"GlossList":{ 🤷♀️
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
| .block { | |
| height: 50px; | |
| background-color: black; | |
| width: 500px; | |
| } |
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
| { | |
| "response": { | |
| "success": 1, | |
| "current_time": 1489348033, | |
| "raw_usd_value": 0.075, | |
| "usd_currency": "metal", | |
| "usd_currency_index": 5002, | |
| "items": { | |
| "A Brush with Death": { | |
| "defindex": [ |
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
| Ach Berlin. Was ist Berlin? Berlin ist die Stadt für die man sich als Deutscher auf internationaler Bühne schämen muss. Wenn man Berlin mit anderen europäischen Hauptstädten wie London, Paris, Madrid und Amsterdam vergleicht, treibt es jedem anständigen Menschen die Schamesröte ins Gesicht. Selbst kleine Länder wie Österreich, Belgien oder die Schweiz haben mit Wien, Brüssel und Zürich international vorzeigbare Städte mit hoher Lebensqualität. Deutschland ist gestraft mit Berlin, der Hauptstadt der Versager. Berlin beheimatet mit Abstand am meisten Arschlöcher in der gesamten Republik. Deutsche Bahn, Bundestag, Air Berlin und der Axel Springer Verlag sind nur einige Beispiele für den unfähigen Abschaum der hier beherbergt wird. | |
| Glorreiche Zeit sind schon längst vorbei, diese Stadt liegt am Boden. Der Berliner an sich ist durch und durch ein fauler Lump. Charaktereigenschaften die in jedem zivilisierten Kulturkreis als pure Faulheit, Unfreundlichkeit, Unfähigkeit, dissoziale Persönlichkeitsstörung und Dummheit |
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
| { | |
| "appid":"appid", | |
| "contextid":"contextid", | |
| "amount":"1", | |
| "assetid":"item.assetid" | |
| } |
| Option | Selection |
|---|---|
| Project name | vue-jest |
| Project description | A Vue.js project |
| Author | Kevin Peters [email protected] |
| Vue build | standalone |
| Install vue-router? | Yes |
| Use ESLint to lint your code? | Yes |
| Pick an ESLint preset | Airbnb |
| Setup unit tests with Karma + Mocha? | No |
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
| $ npm install -g vue-cli | |
| $ vue init webpack vue-jest |
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
| $ cd vue-jest | |
| $ yarn install # you can also use npm with: npm install | |
| $ yarn run dev # you can also use npm with: npm run dev |
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
| $ yarn add -D jest jest-vue-preprocessor babel-jest jsdom vue-server-renderer | |
| # Or you use npm | |
| $ npm install --save-dev jest jest-vue-preprocessor babel-jest jsdom vue-server-renderer |
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="hello"> | |
| <h1 :class="headingClasses">{{ msg }}</h1> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'hello', | |
| computed: { |