Open links in new tab
  1. API 参考 | Vue.js

    生命周期选项 beforeCreate created beforeMount mounted beforeUpdate updated beforeUnmount unmounted errorCaptured renderTracked renderTriggered activated ...

  2. Template Syntax - Vue.js

    Learn the basics of Vue.js template syntax, including dynamic content rendering, directives, and expressions for building interactive web applications.

  3. SFC CSS Features - Vue.js

    SFC CSS Features Scoped CSS When a <style> tag has the scoped attribute, its CSS will apply to elements of the current component only. This is similar to the style encapsulation found in Shadow …

  4. Components Basics | Vue.js

    Learn the basics of Vue.js components, a progressive JavaScript framework, including how to create and use them effectively.

  5. Using Vue with TypeScript

    Configuring tsconfig.json Projects scaffolded via create-vue include pre-configured tsconfig.json. The base config is abstracted in the @vue/tsconfig package. Inside the project, we use Project …

  6. Installation — Vue.js

    Feb 7, 2016 · Installation Compatibility Note Vue does not support IE8 and below, because it uses ECMAScript 5 features that are un-shimmable in IE8. However it supports all ECMAScript 5 …

  7. Quick Start - Vue.js

    Quick Start Try Vue Online To quickly get a taste of Vue, you can try it directly in our Playground. If you prefer a plain HTML setup without any build steps, you can use this JSFiddle as your starting point. If …

  8. Computed Properties - Vue.js

    More importantly, we probably don't want to repeat ourselves if we need to include this calculation in the template more than once. That's why for complex logic that includes reactive data, it is …

  9. KeepAlive - Vue.js

    Vue.js - The Progressive JavaScript Framework Include / Exclude デフォルトでは、 <KeepAlive> はコンポーネント内のどんなコンポーネントでもキャッシュします。この動作は include と exclude …

  10. KeepAlive - Vue.js

    KeepAlive is a Vue.js component that caches inactive components to improve performance and reduce re-rendering for better user experience in web applications.