Skip to content

Commit 0f9ab44

Browse files
author
Javier Diaz
committed
chore: added entry-build file
1 parent 601e8bd commit 0f9ab44

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

index.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import TinyPagination from './packages/TinyPagination/index';
2+
3+
const install = (Vue) => {
4+
Vue.component(TinyPagination.name, TinyPagination);
5+
};
6+
7+
if (typeof window !== 'undefined' && window.Vue) {
8+
install(window.Vue);
9+
}
10+
11+
export default {
12+
version: '0.2.3',
13+
install,
14+
TinyPagination,
15+
};

0 commit comments

Comments
 (0)