When marked converts README.md into a vue component, it encounters a {{}} page and warns you what to do?

// markdownvue
fs.readFile(file, "utf-8", function (err, data) {
  if (err) {
    throw err
  }
  let body = marked(data,{renderer: renderer})
  let innerHtml = "<template>" +
                    "<div class="content-wrapper text-left">" +
                      body +
                    "</div>" +
                  "</template>"
  fs.writeFile(distpath, innerHtml, function (err) {
    if (err) {
      throw err
    }
    spinner.stop("")
  })
})

I read readme.md and add < template > < / template > to the outside to become a vue component, but if I use {{xx}} in readme, the converted vue component will report an error, showing Property or method "xx" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, is not defined in the data of vue components. How to solve this problem?

Mar.10,2021

try adding a v-pre attribute to the outermost div

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b273-2c264.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b273-2c264.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?