1.組件封裝

2.頁面復用
<template> <div> <!-- HTML引用組件 --> <Protograph></Protograph> </div> </template> <script> // JS引用文件(路徑根據實際情況而定) import Protograph from "../pages/Protograph.vue"; components: { Protograph: Protograph }, data() { return { }; }, methods: { } </script> <style> </style>
