Vue.js
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=Languages |subcat=Programming Languages |extensions={{ext|vue}} |released=2014 }} '''Vue.js''' (or just '''Vue''') is a free and open source [[JavaScr...") |
Latest revision as of 05:49, 3 May 2017
Vue.js (or just Vue) is a free and open source JavaScript front-end framework. It has an optional feature known as "single file components," which are reusable interactive components containing HTML, CSS, and JavaScript. Single file components use the .vue extension, and generally have the following structure:
<template> ... </template> <script> ... </script> <style> ... </style>
For use in browsers, Vue component files have to be compiled using vue-loader.