<p>vue-server-renderer: التوجيه غير مطبق على المكون المستورد</p>

تم إنشاؤها على ٢٠ أكتوبر ٢٠١٩  ·  3تعليقات  ·  مصدر: vuejs/vue

ما المشكلة التي تحلها هذه الميزة؟

حاليًا ، لا يتم تطبيق توجيهات SSR على المكونات المستخدمة (الفرعية) ولكن فقط على علامات وعناصر HTML.

التكاثر

// Step 1: Create a Vue instance
const Vue = require("vue");

const Test = {
  template: `<div>This should be red</div>`
}

const app = new Vue({
  template: `
  <div>
    <Test v-make-red/>
    <div v-make-red>This is red</div>
  </div>
  `,
  components: {
    Test
  }
});

const makeRed = (node, dir) => {
  const style = node.data.style || (node.data.style = {});
  if (Array.isArray(style)) {
    style.push({ backgroundColor: "red" });
  } else {
    style.backgroundColor = "red";
  }
};

// Step 2: Create a renderer
const renderer = require("vue-server-renderer").createRenderer({
  directives: {
    makeRed
  }
});

// Step 3: Render the Vue instance to HTML
renderer.renderToString(app, (err, html) => {
  if (err) throw err;
  console.log(html);
  // <div data-server-rendered="true"><div>This should be red</div> <div style="background-color:red;">This is red</div></div>
  // But should include red background-color style for the first div as well
});

ذات صلة: https://github.com/nuxt/nuxt.js/issues/6575

bug contribution welcome ssr

التعليق الأكثر فائدة

مرحبا شباب. أستخدم vue على أساس يومي وأود المساهمة. أرى هنا أن هذه تسمية ترحيب مساهمة.
هل يمكن لأي شخص مساعدتي حتى أتمكن من البدء في إصلاح هذا إذا أمكن ذلك؟

(لقد قمت بالفعل بتثبيت متشعب ويمكنني تشغيل الاختبار والبناء.)

ال 3 كومينتر

مرحبا شباب. أستخدم vue على أساس يومي وأود المساهمة. أرى هنا أن هذه تسمية ترحيب مساهمة.
هل يمكن لأي شخص مساعدتي حتى أتمكن من البدء في إصلاح هذا إذا أمكن ذلك؟

(لقد قمت بالفعل بتثبيت متشعب ويمكنني تشغيل الاختبار والبناء.)

مرحبا ، أي تحديث على هذا؟ لا يزال لا يعمل مع nuxt 2.14

مرحبا ، أي تحديث على هذا؟ لا يزال لا يعمل مع nuxt 2.14

+1
ما زلت لا تعمل ،
[email protected]
[email protected]
[email protected]

هل كانت هذه الصفحة مفيدة؟
0 / 5 - 0 التقييمات

القضايا ذات الصلة

robertleeplummerjr picture robertleeplummerjr  ·  3تعليقات

julianxhokaxhiu picture julianxhokaxhiu  ·  3تعليقات

franciscolourenco picture franciscolourenco  ·  3تعليقات

guan6 picture guan6  ·  3تعليقات

hiendv picture hiendv  ·  3تعليقات