Facebook Twitter LinkedIn Pinterest Shares Build an gallery with vuejs A simple app built with nodejs and vuejs, with a little tailwind css. View Demo View Github Github link Backend: https://github.com/bangnomo/cloud-gallery-be Frontend: https://github.com/bangnomo/cloud-gallery-fe
Facebook Twitter LinkedIn Pinterest Shares vue triple state slider well this is slider that shows three states: previous, current and next slides. preview install via npm npm i @samrahnama/triple-state-slider import slider component import {createApp} from ‘vue’ import TripleStateSlider from ‘@samrahnama/triple-state-slider’ import “@samrahnama/triple-state-slider/dist/main.css” const app = createApp(App) app.use(TripleStateSlider) inside template: <triple-state-slider :slides=“sliderImages“/> inside script: <script setup>…
Facebook Twitter LinkedIn Pinterest Shares Sometimes an application needs more than Node.js to develop and bootstrap itself. Maybe the project needs some automation from a different programming language than JavaScript; even in that scenario, Node.js can run those required tasks; with that, your whole application could be easier to maintain and won’t have a lot…