vant/v3/assets/quickstart.en-US.b88d24fb.js
2024-04-20 08:49:23 +00:00

122 lines
13 KiB
JavaScript

import{o as n,a,y as e}from"./vue-libs.b44bc779.js";const l={class:"van-doc-markdown-body"},t=e(`<h1>Quickstart</h1><h2 id="install" tabindex="-1">Install</h2><div class="van-doc-card"><h3 id="npm" tabindex="-1">npm</h3><p>Using <code>npm</code> to install:</p><pre><code class="language-bash"><span class="hljs-comment"># install latest Vant for Vue 3 project</span>
npm i vant
<span class="hljs-comment"># install Vant 2 for Vue 2 project</span>
npm i vant@latest-v2
</code></pre><p>Using <code>yarn</code> or <code>pnpm</code>:</p><pre><code class="language-bash"><span class="hljs-comment"># with yarn</span>
yarn add vant
<span class="hljs-comment"># with pnpm</span>
pnpm add vant
</code></pre></div><div class="van-doc-card"><h3 id="cdn" tabindex="-1">CDN</h3><p>The easiest way to use Vant is to include a CDN link in the HTML file, after which you can access all components via the global variable <code>vant</code>.</p><pre><code class="language-html"><span class="hljs-comment">&lt;!-- import style --&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">link</span>
<span class="hljs-attr">rel</span>=<span class="hljs-string">&quot;stylesheet&quot;</span>
<span class="hljs-attr">href</span>=<span class="hljs-string">&quot;https://fastly.jsdelivr.net/npm/vant@3/lib/index.css&quot;</span>
/&gt;</span>
<span class="hljs-comment">&lt;!-- import script --&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">script</span> <span class="hljs-attr">src</span>=<span class="hljs-string">&quot;https://fastly.jsdelivr.net/npm/vue@3&quot;</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">script</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">script</span> <span class="hljs-attr">src</span>=<span class="hljs-string">&quot;https://fastly.jsdelivr.net/npm/vant@3/lib/vant.min.js&quot;</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">script</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">script</span>&gt;</span><span class="language-javascript">
<span class="hljs-comment">// Render the Button component</span>
<span class="hljs-keyword">const</span> app = <span class="hljs-title class_">Vue</span>.<span class="hljs-title function_">createApp</span>({
<span class="hljs-attr">template</span>: <span class="hljs-string">\`&lt;van-button&gt;Button&lt;/van-button&gt;\`</span>,
});
app.<span class="hljs-title function_">use</span>(vant);
<span class="hljs-comment">// Register Lazyload directive</span>
app.<span class="hljs-title function_">use</span>(vant.<span class="hljs-property">Lazyload</span>);
<span class="hljs-comment">// Call function component</span>
vant.<span class="hljs-title class_">Toast</span>(<span class="hljs-string">&#39;Message&#39;</span>);
app.<span class="hljs-title function_">mount</span>(<span class="hljs-string">&#39;#app&#39;</span>);
</span><span class="hljs-tag">&lt;/<span class="hljs-name">script</span>&gt;</span>
</code></pre><h4 id="free-cdn" tabindex="-1">Free CDN</h4><p>You can use Vant through these free CDN services:</p><ul><li><a href="https://www.jsdelivr.com/package/npm/vant" target="_blank">jsdelivr</a></li><li><a href="https://cdnjs.com/libraries/vant" target="_blank">cdnjs</a></li><li><a href="https://unpkg.com/" target="_blank">unpkg</a></li></ul><p>Note: Free CDN is generally used for making prototypes or personal projects. It is not recommended to use free CDN in production environment.</p><p>For enterprise developers, we recommend:</p><ul><li>install with npm, use build tools to bundle it</li><li>download the scripts, host it on your own server</li></ul></div><div class="van-doc-card"><h3 id="cli" tabindex="-1">CLI</h3><p>We recommend to use <a href="https://cli.vuejs.org/" target="_blank">Vue CLI</a> to create a new project.</p><pre><code class="language-bash"><span class="hljs-comment"># Install Vue CLI</span>
npm install -g @vue/cli
<span class="hljs-comment"># Create a project</span>
vue create hello-world
<span class="hljs-comment"># Open GUI</span>
vue ui
</code></pre><p><img src="https://fastly.jsdelivr.net/npm/@vant/assets/vue-cli-demo-201809030812.png" alt=""></p><p>In the GUI, click on &#39;Dependencies&#39; -&gt; <code>Install Dependencies</code> and add <code>vant</code> to the dependencies.</p></div><h2 id="usage" tabindex="-1">Usage</h2><div class="van-doc-card"><h3 id="basic-usage" tabindex="-1">Basic Usage</h3><p>The basic usage of Vant components;</p><pre><code class="language-js"><span class="hljs-keyword">import</span> { createApp } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;vue&#39;</span>;
<span class="hljs-comment">// 1. Import the components you need</span>
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">Button</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;vant&#39;</span>;
<span class="hljs-comment">// 2. Import the components style</span>
<span class="hljs-keyword">import</span> <span class="hljs-string">&#39;vant/lib/index.css&#39;</span>;
<span class="hljs-keyword">const</span> app = <span class="hljs-title function_">createApp</span>();
<span class="hljs-comment">// 3. Register the components you need</span>
app.<span class="hljs-title function_">use</span>(<span class="hljs-title class_">Button</span>);
</code></pre><blockquote><p>Tip: Vant supports Tree Shaking by default, so you don&#39;t need to configure any plugins, the unused JS code will be removed by Tree Shaking, but CSS styles cannot be optimized by it.</p></blockquote></div><div class="van-doc-card"><h3 id="import-on-demand" tabindex="-1">Import on demand</h3><p>If you are using vite, webpack or vue-cli, you can use <a href="https://github.com/antfu/unplugin-vue-components" target="_blank">unplugin-vue-components</a>, this plugin can help you to auto importing components and reduce CSS file size.</p><h4 id="1.-install-plugin" tabindex="-1">1. Install Plugin</h4><pre><code class="language-bash"><span class="hljs-comment"># with npm</span>
npm i unplugin-vue-components -D
<span class="hljs-comment"># with yarn</span>
yarn add unplugin-vue-components -D
<span class="hljs-comment"># with pnpm</span>
pnpm add unplugin-vue-components -D
</code></pre><h4 id="2.-configure-plugin" tabindex="-1">2. Configure Plugin</h4><p>For <code>vite</code> based project\uFF0Cconfigure the plugin in the <code>vite.config.js</code> file:</p><pre><code class="language-js"><span class="hljs-keyword">import</span> vue <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;@vitejs/plugin-vue&#39;</span>;
<span class="hljs-keyword">import</span> <span class="hljs-title class_">Components</span> <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;unplugin-vue-components/vite&#39;</span>;
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">VantResolver</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;unplugin-vue-components/resolvers&#39;</span>;
<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> {
<span class="hljs-attr">plugins</span>: [
<span class="hljs-title function_">vue</span>(),
<span class="hljs-title class_">Components</span>({
<span class="hljs-attr">resolvers</span>: [<span class="hljs-title class_">VantResolver</span>()],
}),
],
};
</code></pre><p>For <code>vue-cli</code> based project\uFF0Cconfigure the plugin in the <code>vue.config.js</code> file:</p><pre><code class="language-js"><span class="hljs-keyword">const</span> { <span class="hljs-title class_">VantResolver</span> } = <span class="hljs-built_in">require</span>(<span class="hljs-string">&#39;unplugin-vue-components/resolvers&#39;</span>);
<span class="hljs-keyword">const</span> <span class="hljs-title class_">ComponentsPlugin</span> = <span class="hljs-built_in">require</span>(<span class="hljs-string">&#39;unplugin-vue-components/webpack&#39;</span>);
<span class="hljs-variable language_">module</span>.<span class="hljs-property">exports</span> = {
<span class="hljs-attr">configureWebpack</span>: {
<span class="hljs-attr">plugins</span>: [
<span class="hljs-title class_">ComponentsPlugin</span>({
<span class="hljs-attr">resolvers</span>: [<span class="hljs-title class_">VantResolver</span>()],
}),
],
},
};
</code></pre><p>For <code>webpack</code> based project\uFF0Cconfigure the plugin in the <code>webpack.config.js</code> file:</p><pre><code class="language-js"><span class="hljs-keyword">const</span> { <span class="hljs-title class_">VantResolver</span> } = <span class="hljs-built_in">require</span>(<span class="hljs-string">&#39;unplugin-vue-components/resolvers&#39;</span>);
<span class="hljs-keyword">const</span> <span class="hljs-title class_">ComponentsPlugin</span> = <span class="hljs-built_in">require</span>(<span class="hljs-string">&#39;unplugin-vue-components/webpack&#39;</span>);
<span class="hljs-variable language_">module</span>.<span class="hljs-property">exports</span> = {
<span class="hljs-attr">plugins</span>: [
<span class="hljs-title class_">ComponentsPlugin</span>({
<span class="hljs-attr">resolvers</span>: [<span class="hljs-title class_">VantResolver</span>()],
}),
],
};
</code></pre><h4 id="3.-using-components" tabindex="-1">3. Using Components</h4><p>Then you can using components from Vant in the template, the <code>unplugin-vue-components</code> will automatically import the corresponding Vant components.</p><pre><code class="language-html"><span class="hljs-tag">&lt;<span class="hljs-name">template</span>&gt;</span>
<span class="hljs-tag">&lt;<span class="hljs-name">van-button</span> <span class="hljs-attr">type</span>=<span class="hljs-string">&quot;primary&quot;</span> /&gt;</span>
<span class="hljs-tag">&lt;/<span class="hljs-name">template</span>&gt;</span>
</code></pre><h4 id="4.-style-of-function-components" tabindex="-1">4. Style of Function Components</h4><p>Some components of Vant are provided as function, including <code>Toast</code>, <code>Dialog</code>, <code>Notify</code> and <code>ImagePreview</code>. When using function components, <code>unplugin-vue-components</code> can not auto import the component style, so we need to import style manually.</p><pre><code class="language-js"><span class="hljs-comment">// Toast</span>
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">Toast</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;vant&#39;</span>;
<span class="hljs-keyword">import</span> <span class="hljs-string">&#39;vant/es/toast/style&#39;</span>;
<span class="hljs-comment">// Dialog</span>
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">Dialog</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;vant&#39;</span>;
<span class="hljs-keyword">import</span> <span class="hljs-string">&#39;vant/es/dialog/style&#39;</span>;
<span class="hljs-comment">// Notify</span>
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">Notify</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;vant&#39;</span>;
<span class="hljs-keyword">import</span> <span class="hljs-string">&#39;vant/es/notify/style&#39;</span>;
<span class="hljs-comment">// ImagePreview</span>
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">ImagePreview</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;vant&#39;</span>;
<span class="hljs-keyword">import</span> <span class="hljs-string">&#39;vant/es/image-preview/style&#39;</span>;
</code></pre><blockquote><p>Tip: &quot;Full Import&quot; and &quot;On-demand Import&quot; should not be used at the same time, otherwise it will lead to problems such as code duplication and style overrides.</p></blockquote></div><h2 id="with-frameworks" tabindex="-1">With Frameworks</h2><div class="van-doc-card"><h3 id="use-vant-in-nuxt-3" tabindex="-1">Use Vant in Nuxt 3</h3><p>When using Vant in Nuxt 3, you should add <code>/vant/</code> to the <code>build.transpile</code>:</p><pre><code class="language-ts"><span class="hljs-keyword">import</span> { defineNuxtConfig } <span class="hljs-keyword">from</span> <span class="hljs-string">&#39;nuxt&#39;</span>;
<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> <span class="hljs-title function_">defineNuxtConfig</span>({
<span class="hljs-attr">experimental</span>: {
<span class="hljs-attr">externalVue</span>: <span class="hljs-literal">true</span>,
},
});
</code></pre><p>Reference:</p><ul><li><a href="https://github.com/nuxt/framework/issues/6761" target="_blank">nuxt/framework#6761</a></li><li><a href="https://github.com/nuxt/framework/issues/4084" target="_blank">nuxt/framework#4084</a></li></ul></div>`,10),p=[t],d={__name:"quickstart.en-US",setup(o,{expose:s}){return s({frontmatter:{}}),(i,r)=>(n(),a("div",l,p))}};export{d as default};