Skip to content

Corgis/vite-plugin-vue-setup-extend

 
 

Repository files navigation

vite-plugin-vue-setup-name-support

Make the vue script setup syntax support the name attribute

Install (yarn or npm)

node version: >=12.0.0

vite version: >=2.0.0

yarn add vite-plugin-vue-setup-extend -D

or

npm i vite-plugin-vue-setup-extend -D

Usage

  • Config plugin in vite.config.ts. In this way, the required functions can be introduced as needed
import { defineConfig, Plugin } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueSetupExtend from 'vite-plugin-vue-setup-extend'

export default defineConfig({
  plugins: [vue(), vueSetupExtend()],
})
  • SFC
<template>
  <div>hello world {{ a }}</div>
</template>

<script lang="ts" setup name="App">
  const a = 1
</script>

Sample project

Vben Admin

License

MIT

About

Extending the vue script setup syntactic sugar

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 43.9%
  • JavaScript 33.5%
  • Shell 12.1%
  • HTML 7.3%
  • Vue 3.2%