mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 15:37:33 +08:00
39 lines
702 B
Vue
39 lines
702 B
Vue
<template>
|
|
<f7-app :params="f7params">
|
|
<f7-view id="main-view" main url="/" :push-state="true"></f7-view>
|
|
</f7-app>
|
|
</template>
|
|
|
|
<script>
|
|
import routes from './router/mobile.js';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
f7params: {
|
|
name: 'lab',
|
|
id: 'net.mayswind.lab',
|
|
theme: 'ios',
|
|
routes: routes,
|
|
view: {
|
|
animate : false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
-ms-user-select: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.work-break-all {
|
|
word-break: break-all;
|
|
}
|
|
</style>
|