添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Skip to content
eslint-plugin-vue
On this page

vue/no-export-in-script-setup

disallow export in <script setup>

  • ⚙️ This rule is included in all of "plugin:vue/vue3-essential" , "plugin:vue/essential" , "plugin:vue/vue3-strongly-recommended" , "plugin:vue/strongly-recommended" , "plugin:vue/vue3-recommended" and "plugin:vue/recommended" .

📖 Rule Details

This rule warns ES module exports in <script setup> .

The previous version of <script setup> RFC used export to define variables used in templates, but the new <script setup> RFC has been updated to define without using export . See Vue RFCs - 0040-script-setup for more details.

Now loading...
Now loading...

🔧 Options

Nothing.

📚 Further Reading

🚀 Version

This rule was introduced in eslint-plugin-vue v7.13.0

🔍 Implementation