含糊母鸡

文章
4
资源
0
加入时间
2年10月21天

c语言实现ping源码

从Android源码中拷贝下来的,可以在Linux直接编译运行ping.c/* * Copyright (c) 1989 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley

自己封装 vue 组件 和 插件vue 组件 vue 插件

vue 组件一、组件的创建,两种方法。(本质上是1、2两种,vue文件,只是创建了一个 组件选项对象,仅是一个js对象)1、定义组件:Vue.component('button-counter',{})。这种方法创建的组件,只能使用在父组件中,无法使用在插件中。因为在不挂载组件时,无法获取到组件对象。Vue.component('my-component',{ ...