How is the vue rendering function used in a single-page SPA?

Vue.component("anchored-heading", {
  template: "-sharpanchored-heading-template",
  props: {
    level: {
      type: Number,
      required: true
    }
  }
})

vue???



Apr.14,2021

you are on this page, should be a Vue file, to create a component, vue you want to reference, otherwise can not call Vue.component
general components are written into vue files, and then import, declare in the parent component, SPA applications rarely use this method.

Menu