por Anselmo Battisti | fev 7, 2017 | Sem categoria
This error: [Vue warn]: existing instance property “fields” will be overwritten by a computed property with the same name. in our case was caused by the vue-validate package The problem is: both of the packages use the same name “fields”, to...
por Anselmo Battisti | jan 28, 2017 | Linux, PHP
By default after installation of php7 the display_erros is setting to off. How to modifi it in php.ini configuration? If you are using linux probably in /etc/php/7.0/apache2/php.ini (if you are using php directly from terminal you need to change...
por Anselmo Battisti | jan 28, 2017 | Sem categoria
Atom editor is a great editor, but by default, the speed of scroll mouse is to slow! How to change it? 1 – Menu File > Config 2 – Find the editor: section 3 – write the new attribute (scrollSensitivity: 80) 4 – save the file and that is it!...
por Anselmo Battisti | jan 18, 2017 | Sem categoria
I was trying to use bootbox inside a vue component, but, this message always bugs me. bootbox is not defined Fist, you need to import bootstrap and jquery to your app. After install bootstrap and jquery using npm you need to ensure that your app is using it. import...
por Anselmo Battisti | dez 12, 2016 | NPM
Como saber se o npm está configurado para usar um proxy ou não? npm config get proxy se voltar null quer dizer que ele não está usando proxy. Para setar um proxy: npm config set proxy http://proxy.company.com:8080 npm config set https-proxy...