目录
设置name的用处:页面缓存需要识别页面的唯一name属性才可以缓存
<script>
export default {
name: "index_view"
}
</script>
单独创建一个script标签来设置name,这种方法比较浪费,单独设置name加一个标签
<script>
export default {
name: "index_view"
}
</script>
<script setup lang="ts">
// 这里不能直接设置name属性
</script>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name:"",
data(){
return {}
}
})
如果项目里面有重复的文件夹名称就会出现重复的name,就会导致缓存错误
name就是当前页面的文件夹名称
index.vue 页面的?name就是index
yarn add unplugin-vue-setup-extend-plus
pnpm add unplugin-vue-setup-extend-plus
// 如果你使用了ts,则需要设置这个
// tsconfig.json文件中
{
"compilerOptions":{
"types": [
"unplugin-vue-define-options/macros-global"
]
}
}
// vue.config.js 页面
module.exports = defineConfig({
configureWebpack: {
plugins: [require('unplugin-vue-setup-extend-plus/webpack').default()],
}
})
name属性自定义页面名称?
<script setup lang="ts" name="EmolumentSalesmanView">
//内容
</script>