How vue customizes the _ scopeId of a component

problem description

I have multiple components with the same style tag content, but I can"t mention it, so can I customize _ scopeId

Jun.16,2022

Why can't you extract it? Since the content in the style tag is exactly the same, the code can be extracted as mixin. For example,

<style lang="stylus" scoped>
  /*css*/
  @import "../../common/stylus/mixin/common.styl";
  /*css*/
  @import "./my-page.styl"
</style>
Menu