All Projects → JuniorTour → vue-template-babel-compiler

JuniorTour / vue-template-babel-compiler

Licence: other
Enable Optional Chaining(?.), Nullish Coalescing(??) and many new ES syntax for Vue.js SFC based on Babel

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vue-template-babel-compiler

Vue Framework Wz
👏vue后台管理框架👏
Stars: ✭ 3,757 (+3444.34%)
Mutual labels:  vue2, vue-template
vue-code-view
A Vue 2 component like Vue SFC REPL `@vue/repl` : u can edit, run and preview the code effect display in real time on the web page.
Stars: ✭ 67 (-36.79%)
Mutual labels:  vue2, sfc
penework
Penetration Test Framwork
Stars: ✭ 24 (-77.36%)
Mutual labels:  vue2
jodit-vue
Vue wrapper for Jodit Editor
Stars: ✭ 60 (-43.4%)
Mutual labels:  vue2
v-drag
The simplest way to integrate dragging on Vue.js
Stars: ✭ 71 (-33.02%)
Mutual labels:  vue2
taro-template
可用于生产环境的taro项目模版,技术栈:taro + taro-ui + typescript + dva / mobx + sass,无需过多关注项目配置,预置功能包括但不限于页面/组件/store/service模版一键生成/编译自动生成路由列表和组件入口/代码规范强制检查/请求拦截封装/小程序CI等,实现多端项目的高效快速开发。目前已有1.x / 2.x / 3.x 版本。
Stars: ✭ 59 (-44.34%)
Mutual labels:  vue-template
vue-admin-better
🚀🚀🚀vue admin,vue3 admin,vue3.0 admin,vue后台管理,vue-admin,vue3.0-admin,admin,vue-admin,vue-element-admin,ant-design,vue-admin-beautiful-pro,vab admin pro,vab admin plus,vue admin plus,vue admin pro
Stars: ✭ 12,962 (+12128.3%)
Mutual labels:  vue-template
vue2-vue-router2-webpack
http://www.qinshenxue.com/article/20161106163608.html
Stars: ✭ 14 (-86.79%)
Mutual labels:  vue2
aspnet-core-vuejs-template
ASP.NET Core / Vue.js SPA Template App
Stars: ✭ 75 (-29.25%)
Mutual labels:  vue-template
nodejs-mock-koa2-vue2
node.js开发的一套本地mock静态数据平台系统
Stars: ✭ 16 (-84.91%)
Mutual labels:  vue2
vue-jsPlumb
jsPlumb with Vue 2.【WIP】
Stars: ✭ 66 (-37.74%)
Mutual labels:  vue2
lumen-cms
GraphQL API-First CMS based on NodeJS and Vue 2, Nuxt and Vuetify
Stars: ✭ 77 (-27.36%)
Mutual labels:  vue2
vue-pattern-input
Use RegExp to limit input
Stars: ✭ 25 (-76.42%)
Mutual labels:  vue2
cuida
A design system built by Sysvale, using storybook and Vue components
Stars: ✭ 16 (-84.91%)
Mutual labels:  vue2
GamerClubWeb
🎮 A gaming news frontend, base on vuetify
Stars: ✭ 17 (-83.96%)
Mutual labels:  vue2
graphX
A simple blog based on Nuxt and graphQL
Stars: ✭ 19 (-82.08%)
Mutual labels:  vue2
vue-drag-zone
Drag Zone component for @vuejs
Stars: ✭ 127 (+19.81%)
Mutual labels:  vue2
vue3-chat
2021👨‍🎓Vue2/3全家桶 + Koa+Socket+Vant3前后端分离移动端聊天应用。vue+node全栈入门项目
Stars: ✭ 46 (-56.6%)
Mutual labels:  vue2
Simple-Social-Network
Micro Social Network developed in PHP, MySQL, BOOTSTRAP 3 and VUE.JS 2
Stars: ✭ 18 (-83.02%)
Mutual labels:  vue2
g2plot-vue
g2plot for vue, both 2 and 3
Stars: ✭ 106 (+0%)
Mutual labels:  vue2

vue-template-babel-compiler · Maintenance PRs Welcome

Enable Optional Chaining(?.), Nullish Coalescing(??) and many new ES syntax for Vue.js SFC based on Babel.

Downloads Size Version LastCommit CIStatus

DEMO

Visit Online Playground →

DEMO

Features

Usage

1. Install

npm install vue-template-babel-compiler --save-dev

2. Config

1. Vue-CLI

Vue-CLI Online Example Project
// vue.config.js
module.exports = {
  chainWebpack: config => {
    config.module
      .rule('vue')
      .use('vue-loader')
      .tap(options => {
        options.compiler = require('vue-template-babel-compiler')
        return options
      })
  }
}

2. Nuxt.js

Nuxt.js Online Example Project
// nuxt.config.js
export default {
  // Build Configuration: https://go.nuxtjs.dev/config-build
  build: {
    loaders: {
      vue: {
        compiler: require('vue-template-babel-compiler')
      }
    },
  },
  // ...
}

Doc

API Doc

Welcome for Issues && PR, see CONTRIBUTING.md for detail.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].