make-sfc.js 321 B

12345678910111213
  1. module.exports = ({ template, script, style }) => {
  2. const templateBlock = `<template>${template}</template>`;
  3. const scriptBlock = `<script>${script}</script>`;
  4. const styleBlock = `<style>${style}</style>`;
  5. return `
  6. ${template ? templateBlock : ''}
  7. ${script ? scriptBlock : ''}
  8. ${style ? styleBlock : ''}
  9. `;
  10. };