{"id":7838,"date":"2023-11-28T20:00:51","date_gmt":"2023-11-28T12:00:51","guid":{"rendered":"https:\/\/wx.kaifamiao.info\/?p=7838"},"modified":"2023-12-01T23:05:48","modified_gmt":"2023-12-01T15:05:48","slug":"vue-zhongmintui-shi-shen-me-zen-me-shi-yong-shuo-c","status":"publish","type":"post","link":"http:\/\/wx.kaifamiao.info\/index.php\/2023\/11\/28\/vue-zhongmintui-shi-shen-me-zen-me-shi-yong-shuo-c\/","title":{"rendered":"Vue \u4e2d mint-ui \u662f\u4ec0\u4e48\uff1f\u600e\u4e48\u4f7f\u7528\uff1f\u8bf4\u51fa\u81f3\u5c11\u4e09\u4e2a\u7ec4\u4ef6\u4f7f\u7528\u65b9\u6cd5\uff1f"},"content":{"rendered":"<p>Mint UI \u662f\u4e00\u4e2a\u57fa\u4e8e Vue.js \u7684\u79fb\u52a8\u7aef UI \u7ec4\u4ef6\u5e93\uff0c\u63d0\u4f9b\u4e86\u4e30\u5bcc\u7684\u79fb\u52a8\u7aef UI \u7ec4\u4ef6\uff0c\u7528\u4e8e\u5feb\u901f\u6784\u5efa\u79fb\u52a8\u7aef\u5e94\u7528\u7684\u754c\u9762\u548c\u4ea4\u4e92\u6548\u679c\u3002<\/p>\n<h3><a id=\"%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%EF%BC%9A\" class=\"anchor\" aria-hidden=\"true\"><span class=\"octicon octicon-link\"><\/span><\/a>\u4f7f\u7528\u65b9\u6cd5\uff1a<\/h3>\n<p>\u9996\u5148\uff0c\u4f60\u9700\u8981\u5b89\u88c5 Mint UI\uff1a<\/p>\n<pre><code class=\"language-bash\">npm install mint-ui -S\n<\/code><\/pre>\n<p>\u7136\u540e\uff0c\u5728\u4f60\u7684 Vue \u9879\u76ee\u4e2d\uff0c\u53ef\u4ee5\u6309\u7167\u4ee5\u4e0b\u65b9\u5f0f\u4f7f\u7528 Mint UI \u7ec4\u4ef6\uff1a<\/p>\n<ol>\n<li><strong>\u6309\u9700\u5f15\u5165\u7ec4\u4ef6\uff1a<\/strong> \u53ef\u4ee5\u4f7f\u7528 Mint UI \u63d0\u4f9b\u7684\u6309\u9700\u5f15\u5165\u65b9\u5f0f\uff0c\u53ea\u5f15\u5165\u9700\u8981\u7684\u7ec4\u4ef6\uff0c\u51cf\u5c0f\u6253\u5305\u4f53\u79ef\u3002<\/li>\n<\/ol>\n<pre><code class=\"language-javascript\">import { Button, Cell, Toast } from 'mint-ui';\n\nexport default {\n  components: {\n    'mt-button': Button,\n    'mt-cell': Cell,\n    'mt-toast': Toast\n  },\n  methods: {\n    showToast() {\n      Toast('Hello Mint UI!');\n    }\n  }\n};\n<\/code><\/pre>\n<ol start=\"2\">\n<li><strong>\u5168\u5c40\u5f15\u5165\uff1a<\/strong> \u4e5f\u53ef\u4ee5\u5c06 Mint UI \u7ec4\u4ef6\u5168\u5c40\u6ce8\u518c\uff0c\u5728 <code>main.js<\/code> \u4e2d\u5f15\u5165 Mint UI \u5e76\u6ce8\u518c\u7ec4\u4ef6\u3002<\/li>\n<\/ol>\n<pre><code class=\"language-javascript\">import Vue from 'vue';\nimport MintUI from 'mint-ui';\nimport 'mint-ui\/lib\/style.css';\n\nVue.use(MintUI);\n<\/code><\/pre>\n<p>\u7136\u540e\u5728\u4f60\u7684\u7ec4\u4ef6\u4e2d\u76f4\u63a5\u4f7f\u7528 Mint UI \u7684\u7ec4\u4ef6\uff1a<\/p>\n<pre><code class=\"language-vue\">&lt;template&gt;\n  &lt;div&gt;\n    &lt;mt-button @click=&quot;showToast&quot;&gt;Click me&lt;\/mt-button&gt;\n    &lt;mt-cell title=&quot;Cell Title&quot; value=&quot;Cell Value&quot;&gt;&lt;\/mt-cell&gt;\n  &lt;\/div&gt;\n&lt;\/template&gt;\n\n&lt;script&gt;\nexport default {\n  methods: {\n    showToast() {\n      this.$toast('Hello Mint UI!');\n    }\n  }\n};\n&lt;\/script&gt;\n<\/code><\/pre>\n<h3><a id=\"mint-ui%E7%BB%84%E4%BB%B6%E7%9A%84%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E7%A4%BA%E4%BE%8B%EF%BC%9A\" class=\"anchor\" aria-hidden=\"true\"><span class=\"octicon octicon-link\"><\/span><\/a>Mint UI \u7ec4\u4ef6\u7684\u4f7f\u7528\u65b9\u6cd5\u793a\u4f8b\uff1a<\/h3>\n<ol>\n<li><strong>Button \u6309\u94ae\u7ec4\u4ef6\uff1a<\/strong><\/li>\n<\/ol>\n<pre><code class=\"language-vue\">&lt;template&gt;\n  &lt;div&gt;\n    &lt;mt-button @click=&quot;handleClick&quot;&gt;Click me&lt;\/mt-button&gt;\n  &lt;\/div&gt;\n&lt;\/template&gt;\n\n&lt;script&gt;\nexport default {\n  methods: {\n    handleClick() {\n      \/\/ \u5904\u7406\u6309\u94ae\u70b9\u51fb\u4e8b\u4ef6\n    }\n  }\n};\n&lt;\/script&gt;\n<\/code><\/pre>\n<ol start=\"2\">\n<li><strong>Cell \u5355\u5143\u683c\u7ec4\u4ef6\uff1a<\/strong><\/li>\n<\/ol>\n<pre><code class=\"language-vue\">&lt;template&gt;\n  &lt;div&gt;\n    &lt;mt-cell title=&quot;Username&quot; value=&quot;John Doe&quot;&gt;&lt;\/mt-cell&gt;\n  &lt;\/div&gt;\n&lt;\/template&gt;\n\n&lt;script&gt;\nexport default {\n  \/\/ ...\n};\n&lt;\/script&gt;\n<\/code><\/pre>\n<ol start=\"3\">\n<li><strong>Toast \u5f39\u51fa\u6846\u7ec4\u4ef6\uff1a<\/strong><\/li>\n<\/ol>\n<pre><code class=\"language-vue\">&lt;template&gt;\n  &lt;div&gt;\n    &lt;mt-button @click=&quot;showToast&quot;&gt;Show Toast&lt;\/mt-button&gt;\n  &lt;\/div&gt;\n&lt;\/template&gt;\n\n&lt;script&gt;\nexport default {\n  methods: {\n    showToast() {\n      this.$toast('Hello Mint UI!');\n    }\n  }\n};\n&lt;\/script&gt;\n<\/code><\/pre>\n<p>\u8fd9\u6837\uff0c\u4f60\u5c31\u80fd\u591f\u5728 Vue \u9879\u76ee\u4e2d\u4f7f\u7528 Mint UI \u7684\u7ec4\u4ef6\u6765\u6784\u5efa\u79fb\u52a8\u7aef\u5e94\u7528\u7684\u754c\u9762\u548c\u4ea4\u4e92\u6548\u679c\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mint UI \u662f\u4e00\u4e2a\u57fa\u4e8e Vue.js \u7684\u79fb\u52a8\u7aef UI \u7ec4\u4ef6\u5e93\uff0c\u63d0\u4f9b\u4e86\u4e30\u5bcc\u7684\u79fb\u52a8\u7aef UI \u7ec4\u4ef6\uff0c\u7528\u4e8e\u5feb\u901f\u6784\u5efa [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[114],"tags":[],"class_list":["post-7838","post","type-post","status-publish","format-standard","hentry","category-vue"],"_links":{"self":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/7838","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/comments?post=7838"}],"version-history":[{"count":2,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/7838\/revisions"}],"predecessor-version":[{"id":13968,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/7838\/revisions\/13968"}],"wp:attachment":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/media?parent=7838"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/categories?post=7838"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/tags?post=7838"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}