I Built My Own Blogging Platform Using Vue + Yii2
A developer has created a personal blogging platform using Vue and Yii2 to enhance their web development skills. The project is ongoing, and the developer is seeking feedback on various aspects such as UI/UX and performance. Key features include user authentication, a CMS dashboard, and SEO support.
- ▪The platform is built using Vue 3 for the frontend and Yii2 REST API for the backend.
- ▪Current features include user authentication, blog post management, and a responsive UI.
- ▪The developer is actively seeking feedback from other developers to improve the platform.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3952521) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } zinh8803 Posted on May 26 I Built My Own Blogging Platform Using Vue + Yii2 #webdev #php #vue #opensource Hi everyone Over the past few weeks, I’ve been building a personal blogging platform from scratch using Vue + Yii2 REST API as a way to improve my backend and frontend development skills. This is still an active project, and I’d really love to get feedback from other developers about the UI/UX, performance, features, and overall experience.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).