这里使用vue2进行的实现
首先先建一个页面
<template><div>我是标题块111</div></template><script> export default {name: "index" } </script><style scoped></style>
建好了页面,接下来在需要将这个页面当作组件来引入的页面些代码
<template><div className="parent-page"><titleFirst></titleFirst></div> </template><script>import titleFirst from '@/views/plm/titleFirst/index';export default {name: 'ParentPage',components: {titleFirst, },} </script>
就可以实现将titleFirst作为组件进行引用了
到这里就已经实现了效果,希望可以帮助各位老登程序员