From dbd07cb5fbc52d26a861be7f32b2d8a0074f4dfe Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 30 Jun 2017 21:35:42 +0200 Subject: [PATCH] README --- src_htmlPhone/README.md | 75 ++++------------------ src_htmlPhone/src/components/call/Call.vue | 4 -- 2 files changed, 14 insertions(+), 65 deletions(-) diff --git a/src_htmlPhone/README.md b/src_htmlPhone/README.md index 8cd6de5..a4fec38 100644 --- a/src_htmlPhone/README.md +++ b/src_htmlPhone/README.md @@ -1,68 +1,21 @@ -## Téléphone pour FiveM +# src_htmlphone -### Appel event -```LUA ---================================================================== --- Police ---================================================================== --- Police [Signaler un vol] -TriggerEvent('police:callPolice', {type: 'Vole'}) --- Police [Signaler une agression] -TriggerEvent('police:callPolice', {type: 'Aggression'}) --- Police [Autre] -TriggerEvent('police:callPoliceCustom') --- Police [Annuler l'appel en cour] -TriggerEvent('police:cancelCall') +> A Vue.js project +## Build Setup ---================================================================== --- Ambulance ---================================================================== --- Ambulance [Appel Coma] -TriggerEvent('ambulancier:callAmbulancier', {type: 'Vole'}) --- Ambulance [Appel ambulance] -TriggerEvent('ambulancier:callAmbulancier', {type: 'Aggression'}) --- Ambulance [Respawn] -TriggerEvent('ambulancier:selfRespawn') --- Ambulance [Annuler l'appel en cour] -TriggerEvent('ambulancier:cancelCall') +``` bash +# install dependencies +npm install +# serve with hot reload at localhost:8080 +npm run dev ---================================================================== --- Taxi ---================================================================== --- Taxi [1 personne] -TriggerEvent('taxi:callService', {type: '1 personne'}) --- Taxi [2 personnes] -TriggerEvent('taxi:callService', {type: '2 personnes'}) --- Taxi [3 personnes] -TriggerEvent('taxi:callService', {type: '3 personnes'}) --- Taxi [Annuler l'appel en cour] -TriggerEvent('taxi:cancelCall') +# build for production with minification +npm run build +# build for production and view the bundle analyzer report +npm run build --report +``` ---================================================================== --- Mecano ---================================================================== --- Mecano [Moto] -TriggerEvent('mecano:callMecano', {type: 'Moto'}) --- Mecano [Voiture] -TriggerEvent('mecano:callMecano', {type: 'Voiture'}) --- Mecano [Camionnette] -TriggerEvent('mecano:callMecano', {type: 'Camionnette'}) --- Mecano [Camion] -TriggerEvent('mecano:callMecano', {type: 'Camion'}) --- Mecano [Annuler l'appel en cour] -TriggerEvent('mecano:cancelCall') - ---================================================================== --- Urgence ---================================================================== --- Ambulance -TriggerEvent('ambulancier:callAmbulancier', {type: 'Coma'}) --- Police -TriggerEvent('police:callPolice', {type: 'Homme à terre'}) --- Hopital -TriggerEvent('ambulancier:selfRespawn') - -``` \ No newline at end of file +For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). diff --git a/src_htmlPhone/src/components/call/Call.vue b/src_htmlPhone/src/components/call/Call.vue index 0d962a4..cb332b4 100644 --- a/src_htmlPhone/src/components/call/Call.vue +++ b/src_htmlPhone/src/components/call/Call.vue @@ -19,7 +19,6 @@ export default { ignoreControls: false, callList: [{ display: 'Police', - eventName: 'mecano:callMecano', subMenu: [ {title: 'Signaler un vol', eventName: 'police:callPolice', type: 'Vole'}, {title: 'Signaler une agression', eventName: 'police:callPolice', type: 'Aggression'}, @@ -28,7 +27,6 @@ export default { ] }, { display: 'Ambulance', - eventName: 'mecano:callMecano', subMenu: [ {title: 'Appel Coma', eventName: 'ambulancier:callAmbulancier', type: 'Coma'}, {title: 'Appel ambulance', eventName: 'ambulancier:callAmbulancier', type: 'Soin'}, @@ -37,7 +35,6 @@ export default { ] }, { display: 'Taxi', - eventName: 'mecano:callMecano', subMenu: [ {title: '1 personne', eventName: 'taxi:callService', type: '1 personne'}, {title: '2 personnes', eventName: 'taxi:callService', type: '2 personnes'}, @@ -46,7 +43,6 @@ export default { ] }, { display: 'Mecano', - eventName: 'mecano:callMecano', subMenu: [ {title: 'Moto', eventName: 'mecano:callMecano', type: 'Moto'}, {title: 'Voiture', eventName: 'mecano:callMecano', type: 'Voiture'},