npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yu-ui-library

v0.1.6

Published

vue2 组件库封装

Downloads

12

Readme

vue2-example

创建项目和目录解构

https://cn.vuejs.org/v2/guide/plugins.html

创建项目vue create vue2-example

  • vue version->vue2
  • babel
  • css预处理器->dart sass
  • 不选eslint

创建组件目录: 在项目根目录下创建modules/my-ui文件夹

Button组件

推荐以目录的形式创建组件 modules/my-ui/Button/index.vue

<template>
    <button 
        :class="['my-btn',type]"
        @click="btnClick($event)">
        <slot>默认按钮</slot>
    </button>
</template>

<script>
export default {
    name:'MyButton',
    props:{
        type:String
    },
    methods:{
        btnClick(e){
            this.$emit('click',e)
        }
    }
}
</script>

<style lang="scss" scoped>
    .my-btn{
        height:34px;
        padding: 0 15px;
        border:1px solid #ddd;
        background-color: #fff;

        &.primary{
            border: 1px solid #ddd;
            background-color: blue;
            color:#fff
        }

        &.success{
            border: 1px solid #ddd;
            background-color: green;
            color:#fff
        }

        &.danger{
            border: 1px solid #ddd;
            background-color: red;
            color:#fff
        }
    }

</style>

Input组件

modules/my-ui/Input/index.vue

<template>
    <input type="text" class="my-input" :placeholder="placeholder" :value="value"/>
</template>

<script>
export default {
    name:'MyInput',
    props:{
        placeholder:String,
        value:String
    }
}
</script>

<style lang="scss" scoped>
    .my-input{
        height:34px;
        padding: 0 15px;
        border:1px solid #ddd;
        background-color: #fff;
    }

</style>

导出自定义的UI组件

modules/my-ui/index.js

import Vue from 'vue';
import Button from './Button';
import Input from './Input';

// ========2.解构方式加载组件 start============
const MyButton = {}
const MyInput = {}
MyButton.install = Vue => Vue.component(Button.name,Button);
MyInput.install = Vue => Vue.component(Input.name,Input);
export {
    MyButton,
    MyInput
}
// ========解构方式加载组件 end============


// ========按需加载============
const MyUI = {};
const COMPONENTS = [
    Button,
    Input
]
MyUI.install = function(Vue,options){
    console.log(options)
    // Vue.component
    // Vue.prototype.$http=
    if(options && options.components){
        const components = options.components;
        components.forEach(componentName => {
            COMPONENTS.forEach(component => {
                if(componentName === component.name){
                    console.log(component);
                    // Vue.component 注册组件
                    Vue.component(component.name,component);
                }
            });
        });
    }else{
        // 遍历所有组件,注册
        COMPONENTS.forEach(component => {
            Vue.component(component.name,component); 
        });

    }
}
export default MyUI;
// ========按需加载============

3中方式加载自定义组件到main.js

import Vue from 'vue'
import App from './App.vue'
// import MyUI from '../modules/my-ui'
import '../modules/my-ui/common.css' //引入全局样式
//========= 2.通过解构的方式加载UI组件 start==========
import {MyButton, MyInput} from '../modules/my-ui' 
Vue.use(MyButton);
Vue.use(MyInput);
//========= 通过解构的方式加载UI组件 end==========

//=========  1.按需加载 推荐写法========= 
// Vue.use(MyUI,{
//   components:[
//     'MyButton',
//     'MyInput'
//   ]
// })
// ==================================== 

//======= 3.全局加载=========
// Vue.use(MyUI);
//=======  全局加载=========

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
}).$mount('#app')

使用自定义的组件

App.vue

<template>
  <div id="app">
    <my-button type='success' @click="output">我的按钮</my-button>
    <my-input value='123'/>
  </div>
</template>

<script>
export default {
  name: 'App',
  components: {
  },
  methods:{
    output(e){
      console.log('click',e)
    }
  }
}
</script>

<style lang="scss">

</style>