当前位置:   article > 正文

在Vue3中使用NavieUI组件库,美化页面_csdn navieui

csdn navieui

1 创建Vue3项目

vue create xx

选择Vue3模式

2 安装NavieUI

 npm i -D naive-ui

3 使用NavieUI

注意,好像只支持按需引用

样例:

  1. <template>
  2. <div class="hello">
  3. <h1>{{ msg }}</h1>
  4. <!-- 使用-->
  5. <NButton>naive-ui</NButton>
  6. </div>
  7. </template>
  8. <script>
  9. //引入
  10. import { NButton } from 'naive-ui'
  11. export default {
  12. name: 'HelloWorld',
  13. components:{
  14. //注册
  15. NButton:NButton
  16. },
  17. props: {
  18. msg: String
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>

App.vue 

  1. <template>
  2. <img alt="Vue logo" src="./assets/logo.png">
  3. <HelloWorld msg="Welcome to Your Vue.js App"/>
  4. </template>
  5. <script>
  6. import HelloWorld from './components/HelloWorld.vue'
  7. export default {
  8. name: 'App',
  9. components: {
  10. HelloWorld
  11. }
  12. }
  13. </script>
  14. <style>
  15. #app {
  16. font-family: Avenir, Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. text-align: center;
  20. color: #2c3e50;
  21. margin-top: 60px;
  22. }
  23. </style>

 

 4 官网

Naive UI: 一个 Vue 3 组件库

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/515217
推荐阅读
相关标签
  

闽ICP备14008679号