diff --git a/src/api/options-rendering.md b/src/api/options-rendering.md index a10c4c82..1a17b262 100644 --- a/src/api/options-rendering.md +++ b/src/api/options-rendering.md @@ -2,9 +2,9 @@ ## template {#template} -A string template for the component. +কম্পোনেন্টের জন্য একটি স্ট্রিং টেমপ্লেট. -- **Type** +- **প্রকার** ```ts interface ComponentOptions { @@ -12,25 +12,25 @@ A string template for the component. } ``` -- **Details** +- **বিস্তারিত** - A template provided via the `template` option will be compiled on-the-fly at runtime. It is only supported when using a build of Vue that includes the template compiler. The template compiler is **NOT** included in Vue builds that have the word `runtime` in their names, e.g. `vue.runtime.esm-bundler.js`. Consult the [dist file guide](https://github.com/vuejs/core/tree/main/packages/vue#which-dist-file-to-use) for more details about the different builds. + `template` অপশনের মাধ্যমে প্রদত্ত একটি টেমপ্লেট রানটাইমে সাথে সাথে কম্পাইল করা হবে। টেমপ্লেট কম্পাইলার অন্তর্ভুক্ত Vue-এর একটি বিল্ড ব্যবহার করার সময় এটি শুধুমাত্র সমর্থিত। টেমপ্লেট কম্পাইলার **NOT** Vue বিল্ডে অন্তর্ভুক্ত যেগুলির নামে `runtime` শব্দ আছে, যেমন `vue.runtime.esm-bundler.js`। বিভিন্ন বিল্ড সম্পর্কে আরও বিস্তারিত জানার জন্য [dist file guide](https://github.com/vuejs/core/tree/main/packages/vue#which-dist-file-to-use) দেখুন। - If the string starts with `#` it will be used as a `querySelector` and use the selected element's `innerHTML` as the template string. This allows the source template to be authored using native `