在 uni-app
中引入组件非常简单。您可以创建自己的组件并在页面中使用它们,也可以使用第三方组件库。
创建组件: 在 components
目录下创建一个新的组件,比如 MyComponent.vue
。
<!-- components/MyComponent.vue --> <template> <view class="my-component"> <text>{{ message }}</text> </view> </template> <script> export default { props: { message: { type: String, default: 'Hello from MyComponent!' } } } </script> <style scoped> .my-component { padding: 10px; border: 1px solid #ccc; border-radius: 5px; margin: 10px 0; } </style>
在页面中引入组件: 在某个页面中(如 pages/index/index.vue
),引入刚刚创建的组件。
<!-- pages/index/index.vue --> <template> <view class="container"> <my-component message="这是一条来自父组件的消息"></my-component> </view> </template> <script> // 引入组件 import MyComponent from '@/components/MyComponent.vue'; export default { components: { MyComponent // 注册组件 } } </script> <style> .container { padding: 20px; } </style>
如果您想使用第三方组件库,比如 uView
、Vant Weapp
或其他,您需要遵循以下步骤:
安装组件库: 在项目根目录下,通过 npm 安装组件库(以 uView
为例)。
npm install uview-ui
在 main.js
中引入组件库: 修改 main.js
或 main.ts
文件,引入并注册组件库。
// main.js import Vue from 'vue'; import App from './App.vue'; import uView from 'uview-ui'; // 引入 uView Vue.use(uView); // 使用 uView const app = new Vue({ ...App }); app.$mount();
在页面中使用组件: 现在您可以在任何页面中使用 uView
提供的组件了。
<!-- pages/index/index.vue --> <template> <view> <u-button type="primary" @click="handleClick">点击我</u-button> </view> </template> <script> export default { methods: { handleClick() { uni.showToast({ title: 'uView 按钮被点击了!', icon: 'none' }); } } } </script>
components
目录中创建组件,然后在需要使用的页面中引入并注册。main.js
或 main.ts
,然后在页面中使用组件。标签: 来源:
本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享; 2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关; 3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关; 4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除; 5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。