# wijmo.vue2.core Module

## Content

<div class="content__tsd">
						<div style="display:flex;justify-content:space-between;align-items:center">
							<h1>
								wijmo.vue2.core Module
							</h1>
						</div>
						<section class="tsd-comment">
							<div class="tsd-comment">
								<div class="lead">
									<p>Contains Vue 2 and 3 components for the <b>wijmo</b> module.</p>
								</div>
							</div>
						</section>
						<section class="tsd-index-group">
							<section class="tsd-index-panel">
								<div class="tsd-index-content">
									<section class="tsd-index-section ">
										<div class="title">
											<div class="gc_api_tree-item_icon_img_wrapper">
												<div class="gc_api_tree-item_icon_img" data-expand="true">
												</div>
											</div>
											<h3>
												Variables
											</h3>
										</div>
										<ul class="tsd-index-list">
											<li class="tsd-kind-variable tsd-parent-kind-external-module"><a href="wijmo_vue2_core.html#wjformat" class="tsd-kind-icon">Wj<wbr>Format</a></li>
											<li class="tsd-kind-variable tsd-parent-kind-external-module"><a href="wijmo_vue2_core.html#wjinclude" class="tsd-kind-icon">Wj<wbr>Include</a></li>
											<li class="tsd-kind-variable tsd-parent-kind-external-module"><a href="wijmo_vue2_core.html#wjtooltip" class="tsd-kind-icon">Wj<wbr>Tooltip</a></li>
										</ul>
									</section>
								</div>
							</section>
						</section>
						<section class="tsd-panel-group tsd-member-group ">
							<h2>Variables</h2>
							<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-external-module">
								<a name="wjformat" class="tsd-anchor"></a>
								<h3>WjFormat</h3>
								<div class="tsd-signature tsd-kind-icon">Wj<wbr>Format<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
								<aside class="tsd-sources">
								</aside>
								<div class="tsd-comment">
									<div class="lead">
										<p>Vue filter that applies globalized formatting to dates and numbers.</p>
									</div>
									<p>For example, the code below uses the <b>wj-format</b> filter to format
										a number as a currency value and a date as a short date using the
									current Wijmo culture:</p>
									<pre>&lt;p&gt;value: {​{ theAmount | wj-format('c') }}&lt;/p&gt;
&lt;p&gt;date: {​{ theDate | wj-format('d') }}&lt;/p&gt;</pre>
								</div>
							</section>
							<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-external-module">
								<a name="wjinclude" class="tsd-anchor"></a>
								<h3>WjInclude</h3>
								<div class="tsd-signature tsd-kind-icon">Wj<wbr>Include<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
								<aside class="tsd-sources">
								</aside>
								<div class="tsd-comment">
									<div class="lead">
										<p>Vue component that includes a given HTML fragment into the document.</p>
									</div>
									<p>The <b>wj-include</b> component takes a <b>src</b> attribute that
									specifies a file to load and include into the document. For example:</p>
									<pre>&lt;wj-popup control="modalDialog" :modal="true" :hide-trigger="None"&gt;
  &lt;wj-include src="includes/dialog.htm"&gt;&lt;/wj-include&gt;
&lt;/wj-popup&gt;</pre>
								</div>
							</section>
							<section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-external-module">
								<a name="wjtooltip" class="tsd-anchor"></a>
								<h3>WjTooltip</h3>
								<div class="tsd-signature tsd-kind-icon">Wj<wbr>Tooltip<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
								<aside class="tsd-sources">
								</aside>
								<div class="tsd-comment">
									<div class="lead">
										<p>Vue directive for the <a href="../classes/wijmo.tooltip.html">Tooltip</a> class.</p>
									</div>
									<p>Use the <strong>wjTooltip</strong> directive to add tooltips to elements on the page.
									The wjTooltip directive supports HTML content, smart positioning, and touch.</p>
									<p>The wjTooltip directive is specified as a <strong>v-wjTooltip</strong> attribute added to the
										element that the tooltip applies to. The parameter value is the tooltip
									text or the id of an element that contains the text.</p>
									<p>You can also specify the tooltip with additional properties. In this case
										the directive value is an object with property values. The possible properties
									are:</p>
									<ul>
										<li><strong>tooltip</strong> - tooltip text or element id.</li>
										<li><strong>position</strong> - represents the <a href="../classes/wijmo.tooltip.html#position">Tooltip.position</a> property.</li>
									</ul>
									<p>For example:</p>
									<pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">p</span> <span class="hljs-attr">v-wjTooltip</span>=<span class="hljs-string">"'Just a string'"</span>&gt;</span>
    Paragraph with a string tooltip.
<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">p</span> <span class="hljs-attr">v-wjTooltip</span>=<span class="hljs-string">"{tooltip: '#fineprint', position: 'Left'}&gt;
    Paragraph with a tooltip defined as an element.
&lt;/p&gt;
...
&lt;div id="</span><span class="hljs-attr">fineprint</span>" <span class="hljs-attr">style</span>=<span class="hljs-string">"display:none"</span>&gt;</span>
  <span class="hljs-tag">&lt;<span class="hljs-name">h3</span>&gt;</span>Important Note<span class="hljs-tag">&lt;/<span class="hljs-name">h3</span>&gt;</span>
  <span class="hljs-tag">&lt;<span class="hljs-name">p</span>&gt;</span>
    Data for the current quarter is estimated
    by pro-rating etc.<span class="hljs-tag">&lt;/<span class="hljs-name">p</span>&gt;</span>
<span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span></code></pre>
								</div>
							</section>
						</section>
					</div>