Vue

支持扩展类型: vue

Vue.js 是一个渐进式、增量采用、在 web 环境构建用户界面的 JavaScript 框架。Parcel 对 Vue 支持是开箱即用的。

  1. <!-- index.html -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <title>Parcel - Vue</title>
  6. </head>
  7. <body>
  8. <div id="app"></div>
  9. <script src="./index.js"></script>
  10. </body>
  11. </html>

使用你喜爱的工具(例如:Pug, TypeScript, SCSS, …):

  1. // app.vue
  2. <template lang="pug">
  3. .container Hello {{bundler}}
  4. </template>
  5. <script lang="ts">
  6. import Vue from 'vue'
  7. export default Vue.extend({
  8. data() {
  9. return {
  10. bundler: 'Parcel'
  11. }
  12. }
  13. })
  14. </script>
  15. <style lang="scss" scoped>
  16. .container {
  17. color: green;
  18. }
  19. </style>
  1. // index.js
  2. import Vue from 'vue'
  3. import App from './app.vue'
  4. new Vue(App).$mount('#app')

帮助我们改善文档

如果有遗漏或者不清楚的地方,请在本站的仓库 提交issue 或者 编辑此页面.