はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    WWDC25

『Vue.js Developers - Latest blog posts and news from the Vue.js Ecosystem』

  • 人気
  • 新着
  • すべて
  • Code Coverage for Vue Applications

    4 users

    vuejsdevelopers.com

    Let's take a Vue application scaffolded with Vue CLI like this bahmutov/vue-calculator app. In this blog post, I will show how to instrument the application's source code to collect the code coverage information. We then will use the code coverage reports to guide the end-to-end test writing. The applicationThe example application can be found in bahmutov/vue-calculator repo that was forked from k

    • テクノロジー
    • 2020/07/21 11:44
    • techfeed
    • あとで読む
    • Vue 3 UX Wins with Async Components & Suspense

      3 users

      vuejsdevelopers.com

      Lazy loading components is a easy way to improve the user experience of your app especially if your code bundle is big or if users are on slow connections. Vue 3 has introduced several new features to help you achieve this easily and with great UX through the improvements to the async component API and the new Suspense component. Why lazy load components?Some parts of your UI don't need to be load

      • テクノロジー
      • 2020/07/14 09:21
      • techfeed
      • あとで読む
      • Vue 3 Tutorial (for Vue 2 Users)

        4 users

        vuejsdevelopers.com

        Anthony Gore | March 16th, 2020 (Updated May 9th, 2020) | 9 min read Vue 3 has not been officially released yet, but the maintainers have released beta versions for us punters to try and provide feedback on. If you're wondering what the key features and main changes of Vue 3 are, I'll highlight them in this article by walking you through the creation of a simple app using Vue 3 beta 9. I'm going t

        • テクノロジー
        • 2020/03/17 17:34
        • Vue.js
        • techfeed
        • あとで読む
        • 5 Awesome Boilerplates/Templates For VueJS Projects

          3 users

          vuejsdevelopers.com

          Are you about to begin an important Vue project? To ensure you start with a solid foundation, you might use a template (aka boilerplate, skeleton, starter, or scaffold) rather than starting from npm init or vue init. Many experienced developers have captured their wisdom about building high-quality Vue apps in the form of open source templates. These templates include optimal configuration and pro

          • テクノロジー
          • 2019/03/03 13:27
          • js
          • techfeed
          • JavaScript
          • あとで読む
          • Can A Vue Template Have Multiple Root Nodes (Fragments)?

            3 users

            vuejsdevelopers.com

            Can A Vue Template Have Multiple Root Nodes (Fragments)? If you try to create a Vue template without a root node, such as this: <template> <div>Node 1</div> <div>Node 2</div> </template> You'll get a compilation and/or runtime error, as templates must have a single root element. Typically, you'll fix this problem by adding a "wrapper" div as a parent. This wrapper element has no display purpose, i

            • テクノロジー
            • 2018/09/12 10:00
            • あとで読む
            • How To Build Vue Components That Play Nice

              3 users

              vuejsdevelopers.com

              Very few people write Vue components originally intending them to be open-sourced. Most of us start out writing components for ourselves - we have a problem, and then decide to solve it by building a component. Sometimes we find ourselves wanting to solve the same problem in new locations in our codebase, and so we take our component and refactor it a bit to make it reusable. Then we want to use i

              • テクノロジー
              • 2018/06/19 22:17
              • JavaScript
              • techfeed
              • CSS
              • あとで読む
              • Create & Publish Web Components With Vue CLI 3

                3 users

                vuejsdevelopers.com

                Are web components "the future" for the web platform? There are many opinions both for and against. What is a fact, though, is that browser support is emerging for web components and there are a growing number of tools and resources for authors interested in creating and publishing web components of their own. A great tool for creating web components is Vue.js, and it's been made even easier with

                • テクノロジー
                • 2018/05/22 20:19
                • あとで読む
                • 7 Vue.js Backends Compared

                  3 users

                  vuejsdevelopers.com

                  Which backend are you planning to use for your next Vue.js project? Often developers choose what they're familiar with. If you're primarily a Laravel developer, for example, I'll bet Laravel will be first to your mind when planning a new project. It makes sense to work with what you already know and enjoy. That said, each backend has its own strengths and weaknesses, and certain project requiremen

                  • テクノロジー
                  • 2018/05/06 19:44
                  • あとで読む
                  • Creating Reusable Transitions in Vue

                    3 users

                    vuejsdevelopers.com

                    Transitions in Vue.js are really great. There is no doubt that they can bring your app to life very easily but often you have to write them from scratch in each project or even bring some CSS library like animate.css to make them look good. What if we could encapsulate these into components and simply reuse them across several projects? We will look at several ways to define transitions and dig ou

                    • テクノロジー
                    • 2018/02/27 19:59
                    • JavaScript
                    • Animation
                    • Programming
                    • Create A Vuex Undo/Redo Plugin For VueJS

                      4 users

                      vuejsdevelopers.com

                      There are many benefits to centralizing your application state in a Vuex store. One benefit is that all transaction are recorded. This allows for handy features like time-travel debugging where you can jump between previous states to isolate problems. In this article, I'll demonstrate how to create an undo/redo feature with Vuex, which works in a similar way to time-travel debugging. This feature

                      • テクノロジー
                      • 2018/01/10 09:34
                      • JavaScript
                      • Reactivity in Vue 2, 3, and the Composition API

                        3 users

                        vuejsdevelopers.com

                        Anthony Gore | March 5th, 2017 (Updated May 18th, 2020) | 7 min read One of the features of Vue that first hooked me and many other developers is its reactivity system. It's not just the ease in which it allows you to build dynamic UIs, but the fact that it just works without you having to think about it or even understand it. If you want to become a more advanced Vue developer, however, and espec

                        • テクノロジー
                        • 2018/01/02 19:17
                        • Faking Server-Side Rendering With Vue.js and Laravel

                          3 users

                          vuejsdevelopers.com

                          Server-side rendering (SSR) is a design concept for full-stack web apps that provides a rendered page to the browser. The idea is that the page can be shown while the user waits for scripts to be downloaded and run. If you aren't using a Node.js server for your app then you're out of luck; only a Javascript server can render a Javascript app. However, there are alternative to SSR that may be good

                          • テクノロジー
                          • 2017/12/21 11:21
                          • The Ultimate AJAX Guide For Vue.js Apps

                            4 users

                            vuejsdevelopers.com

                            Anthony Gore | August 28th, 2017 (Updated January 20th, 2020) | 8 min read If you ask two Vue.js developers "what's the best way to implement AJAX in a Vue app?", you'll get three different opinions. Vue is a UI library and therefore doesn't provide an official way of implementing AJAX. There are a number of different approaches that may be used effectively, each with its pros and cons that should

                            • テクノロジー
                            • 2017/11/21 20:25
                            • Vue.js
                            • React
                            • techfeed
                            • JavaScript
                            • あとで読む
                            • Server-Side Rendering With Laravel & Vue.js 2.5

                              3 users

                              vuejsdevelopers.com

                              Server-side rendering is great way to increase the perception of loading speed in your full-stack app. Users get a complete page with visible content when they load your site, as opposed to an empty page that doesn't get populated until JavaScript runs. One of the downsides of using Laravel as a backend for Vue.js was the inability to server render your code. Was. The release of Vue.js 2.5.0 has b

                              • テクノロジー
                              • 2017/11/07 14:50
                              • Build A Lazy-Load Router With Vue.js And The Latest Browser Features

                                3 users

                                vuejsdevelopers.com

                                Build A Lazy-Load Router With Vue.js And The Latest Browser Features Dynamic module importing is one of the latest JavaScript features to hit the major browsers. The main use case for this feature is lazy-loading modules to allow content to be delivered when it is needed, rather than all at once. In this article, I'll demonstrate how you can build a lazy-load router with Vue.js in just a few lines

                                • テクノロジー
                                • 2017/10/29 17:23
                                • JavaScript
                                • 5 Vuex Plugins For Your Next VueJS Project

                                  5 users

                                  vuejsdevelopers.com

                                  There are a lot of good reasons to use Vuex to manage the state of your Vue.js app. For one, it's really easy to add super-cool features with a Vuex plugin. Developers in the Vuex community have created a tonne of free plugins for you to use, with many of the features you can imagine, and some you may not have imagined. In this article, I will show you five feature that you can easily add to your

                                  • テクノロジー
                                  • 2017/10/19 15:22
                                  • Build A Real-Time Chat App With VueJS, Vuex & Cloud Firestore

                                    12 users

                                    vuejsdevelopers.com

                                    Build A Real-Time Chat App With VueJS, Vuex & Cloud Firestore Last week Google's Firebase platform released a new product, Cloud Firestore. Much like the Firebase real-time database, it is a NoSQL-based cloud database that can be used to build real-time applications. It addresses some of the problems Firebase has, like writing complex queries. You can read more about its features here. In this pos

                                    • テクノロジー
                                    • 2017/10/16 23:58
                                    • vuejs
                                    • firebase
                                    • Vue.js
                                    • JavaScript
                                    • techfeed
                                    • あとで読む
                                    • Why You Should Avoid Vue.js DOM Templates

                                      3 users

                                      vuejsdevelopers.com

                                      It's a common practice for a Vue app to use the DOM as its template, as it's the quickest and easiest architecture to set up. This practice comes with a few catches, however, that make it an undesirable choice for any serious project. For example, the markup you write for a DOM template is not always what you get when your app runs. In this article, I'll explain the issues with using the DOM as a

                                      • テクノロジー
                                      • 2017/09/20 09:26
                                      • The Ultimate AJAX Guide For Vue.js Apps

                                        12 users

                                        vuejsdevelopers.com

                                        Anthony Gore | August 28th, 2017 (Updated January 20th, 2020) | 8 min read If you ask two Vue.js developers "what's the best way to implement AJAX in a Vue app?", you'll get three different opinions. Vue is a UI library and therefore doesn't provide an official way of implementing AJAX. There are a number of different approaches that may be used effectively, each with its pros and cons that should

                                        • テクノロジー
                                        • 2017/08/28 11:22
                                        • Vue
                                        • ajax
                                        • english
                                        • javaScript
                                        • tips
                                        • あとで読む
                                        • Vue.js + Brunch: The Webpack Alternative You've Been Hungry For

                                          6 users

                                          vuejsdevelopers.com

                                          Vue.js + Brunch: The Webpack Alternative You've Been Hungry For Imagine if there was a build tool that you could use for Vue.js projects that compiled faster than Webpack, gave you a smaller bundle size and required only a few lines of configuration. Brunch is that tool. In this article, I'll show you how incredibly easy it is to set up a Vue.js + Brunch project, cover some of the pros and cons of

                                          • テクノロジー
                                          • 2017/08/22 08:41
                                          • Webpack
                                          • 7 Ways to Define a Component Template in Vue.js

                                            11 users

                                            vuejsdevelopers.com

                                            Anthony Gore | March 24th, 2017 (Updated February 3rd, 2020) | 5 min read There are plenty of choices when it comes to defining component templates in Vue. By my count, there are at least seven different ways! In this article, we'll go through examples of each and address the pros and cons so you know which one is the best to use in any particular situation. Plain stringsThe quickest and easiest w

                                            • テクノロジー
                                            • 2017/08/02 21:17
                                            • vue.js
                                            • vue
                                            • 4 Important Changes In Vue.js 2.4.0

                                              3 users

                                              vuejsdevelopers.com

                                              Vue.js 2.4.0 has been released this week with an abundance of new features, fixes and optimisations. In this article, I'll give you a breakdown of four new features that I think are the most interesting: Server-side rendering async componentsInheriting attributes in wrapper componentsAsync component support For Webpack 3Preserving HTML comments in components1. Server-Side Rendering Async Component

                                              • テクノロジー
                                              • 2017/07/27 23:31
                                              • Critical CSS and Webpack: Automatically Minimize Render-Blocking CSS

                                                8 users

                                                vuejsdevelopers.com

                                                Critical CSS and Webpack: Automatically Minimize Render-Blocking CSS "Eliminate render-blocking JavaScript and CSS". It's the one Google Page Speed Insights suggestion that I always get stuck with. When a web page is accessed, Google wants it to only load what's useful for the initial view, and use idle time to load anything else. That way, the user can see the page as early as possible. There are

                                                • テクノロジー
                                                • 2017/07/24 17:37
                                                • CSS
                                                • ブラウザ最新動向
                                                • Web標準
                                                • webpack
                                                • Performance
                                                • techfeed
                                                • JavaScript
                                                • あとで読む
                                                • 3 Code Splitting Patterns For VueJS and Webpack

                                                  4 users

                                                  vuejsdevelopers.com

                                                  Code splitting a single page app is a great way to improve its initial loading speed. Since a user doesn't have to download all the code in one hit, they'll be able to see and interact with the page sooner. This will improve UX, especially on mobile, and it's a win for SEO, as Google penalises slow loading sites. Last week I wrote about how to code split a Vue.js app with Webpack. Long story short

                                                  • テクノロジー
                                                  • 2017/07/10 18:01
                                                  • techfeed
                                                  • CSS
                                                  • JavaScript
                                                  • あとで読む
                                                  • 4 Ways To Boost Your Vue.js App With Webpack

                                                    5 users

                                                    vuejsdevelopers.com

                                                    Webpack is an essential tool for developing Vue.js single page applications. It makes your development workflow much simpler by managing complex build steps and can optimise your apps size and performance. In this article I'll explain four ways that Webpack can enhance your Vue app, including: Single file componentsOptimising the Vue buildBrowser cache managementCode splittingWhat about vue-cli?If

                                                    • テクノロジー
                                                    • 2017/06/20 08:59
                                                    • Pre-Render A Vue.js App (With Node Or Laravel)

                                                      3 users

                                                      vuejsdevelopers.com

                                                      Vue.js pre-rendering exampleLet's do a simple example of pre-rendering a Vue.js app, once in a Node.js environment and once in a Laravel environment. In these examples we'll use Webpack with the prerender-spa-plugin to perform the pre-render. Vue and NodeStep 1: Project installationWe'll use vue-cli with the webpack-simple template. $ vue init webpack-simple vue-node-pr-test $ cd vue-node-pr-test

                                                      • テクノロジー
                                                      • 2017/06/06 09:45
                                                      • Switching From React To Vue.js

                                                        10 users

                                                        vuejsdevelopers.com

                                                        So you're a React developer and you've decided to try out Vue.js. Welcome to the party! React and Vue are kind of like Coke and Pepsi, so much of what you can do in React you can also do in Vue. There are some important conceptual differences though, some of which reflect Angular's influence on Vue. I'll focus on the differences in this article so you're ready to jump into Vue and be productive st

                                                        • テクノロジー
                                                        • 2017/05/28 21:18
                                                        • あとで読む
                                                        • How To (Safely) Use A jQuery Plugin With Vue.js

                                                          6 users

                                                          vuejsdevelopers.com

                                                          It's not a great idea to use jQuery and Vue.js in the same UI. Don't do it if you can avoid it. But you're probably reading this not because you want to use jQuery and Vue together, but because you have to. Perhaps a client is insisting on using a particular jQuery plugin that you won't have time to rewrite for Vue. If you're careful about how you do it, you can use jQuery and Vue together safely.

                                                          • テクノロジー
                                                          • 2017/05/25 20:20
                                                          • jQuery
                                                          • When VueJS Can't Help You

                                                            3 users

                                                            vuejsdevelopers.com

                                                            If you want to build a web page with JavaScript, VueJS can do one helluva job on it. But there's a condition: it only works on parts of the page where it has unhampered control. Any part that might be interfered with by other scripts or plugins is a no-go for Vue. This means the head and body tags are Vue-free zones. It's a real bummer if you wanted Vue to manage a class on the body, to take one e

                                                            • テクノロジー
                                                            • 2017/05/05 20:38
                                                            • JavaScript

                                                            このページはまだ
                                                            ブックマークされていません

                                                            このページを最初にブックマークしてみませんか?

                                                            『Vue.js Developers - Latest blog posts and news from the Vue.js Ecosystem』の新着エントリーを見る

                                                            キーボードショートカット一覧

                                                            j次のブックマーク

                                                            k前のブックマーク

                                                            lあとで読む

                                                            eコメント一覧を開く

                                                            oページを開く

                                                            はてなブックマーク

                                                            • 総合
                                                            • 一般
                                                            • 世の中
                                                            • 政治と経済
                                                            • 暮らし
                                                            • 学び
                                                            • テクノロジー
                                                            • エンタメ
                                                            • アニメとゲーム
                                                            • おもしろ
                                                            • アプリ・拡張機能
                                                            • 開発ブログ
                                                            • ヘルプ
                                                            • お問い合わせ
                                                            • ガイドライン
                                                            • 利用規約
                                                            • プライバシーポリシー
                                                            • 利用者情報の外部送信について
                                                            • ガイドライン
                                                            • 利用規約
                                                            • プライバシーポリシー
                                                            • 利用者情報の外部送信について

                                                            公式Twitter

                                                            • 公式アカウント
                                                            • ホットエントリー

                                                            はてなのサービス

                                                            • はてなブログ
                                                            • はてなブログPro
                                                            • 人力検索はてな
                                                            • はてなブログ タグ
                                                            • はてなニュース
                                                            • ソレドコ
                                                            • App Storeからダウンロード
                                                            • Google Playで手に入れよう
                                                            Copyright © 2005-2025 Hatena. All Rights Reserved.
                                                            設定を変更しましたx