- Notifications
You must be signed in to change notification settings - Fork3
Build#4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Build#4
Changes fromall commits
8fb4e07
bac0b57
f9cca1d
cfab0fc
9a5243f
74e219b
7721c08
31a5884
67ab246
285e281
cf5e4ee
1449441
83ab80a
22f83aa
77db9e2
c70b2ac
8bb432b
5f53193
22c0b3e
2f0faee
282d16d
45d45fa
179b31e
4af2116
d667ac9
e2b384c
ceae665
f2b7bb4
757a707
01ebec5
4babc1e
c262a2f
2152a9b
3f4fb73
0128041
a3d551c
1731dec
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
.DS_Store | ||
node_modules/ | ||
public/dist/ | ||
coverage/ | ||
npm-debug.log | ||
yarn-error.log | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import vue from 'rollup-plugin-vue' | ||
import buble from 'rollup-plugin-buble' | ||
import uglify from 'rollup-plugin-uglify-es' | ||
export default { | ||
input: 'index.js', | ||
output: { | ||
name: 'VueTinyPagination', | ||
exports: 'named' | ||
}, | ||
plugins: [ | ||
vue({ | ||
css: true, | ||
compileTemplate: true | ||
}), | ||
buble(), | ||
uglify() | ||
] | ||
} |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import TinyPagination from './src/components/TinyPagination.vue' | ||
export function install (Vue) { | ||
if (install.installed) return | ||
install.installed = true | ||
Vue.component('TinyPagination', TinyPagination) | ||
} | ||
const plugin = { | ||
install | ||
} | ||
let GlobalVue = null | ||
if (typeof window !== 'undefined') { | ||
GlobalVue = window.Vue | ||
} else if (typeof global !== 'undefined') { | ||
GlobalVue = global.Vue | ||
} | ||
if (GlobalVue) { | ||
GlobalVue.use(plugin) | ||
} | ||
export { TinyPagination } | ||
export default plugin |
Uh oh!
There was an error while loading.Please reload this page.