Generate QR Scanner In Laravel

Download html5-qrcode scanner library from github Paste it inside public folder in laravel Create a blade template for qr code scanner and paste this code: <script src="{{ URL::asset('QR/node_modules/html5-qrcode/html5-qrcode.min.js'); }}"></script> <style>…

0 Comments

Dynamic CSS Class in Vuejs

A. Change More Class on its dynamic value <template> <h3 :class="{colorChange:colorChangeJs}">Your Select Fruits Are: {{ Fruits }}</h3> </template> <script>  export default {     name: "HeaderComponent",     data() {…

0 Comments

HTML binding in vuejs

Binding html means, you can bind dynamic html inside of your template. But if you try to render content of dynamic html using mustache syntax or v-text (text binding) you…

0 Comments

Fetch data from API

APIs are powerful tools that allow applications to communicate and exchange data. Vue.js, a progressive JavaScript framework, makes it easy to build dynamic user interfaces. When combined with Axios, a…

0 Comments