随笔分类 -  VUE

摘要:vue.config.js : npm install style-resources-loader module.exports = { //站点标题 chainWebpack: (config) => { config.plugin("html").tap((args) => { args[0] 阅读全文
posted @ 2022-07-05 09:29 deajax 阅读(346) 评论(0) 推荐(0) 编辑
摘要:<script> import { onBeforeMount, onBeforeUnmount } from "vue"; export default { setup() { onBeforeMount(() => { document.body.setAttribute("style", "b 阅读全文
posted @ 2022-07-05 09:27 deajax 阅读(782) 评论(0) 推荐(0) 编辑
摘要:runtimeCompiler Type: boolean Default: false 是否使用包含运行时编译器的 Vue 构建版本。设置为 true 后你就可以在 Vue 组件中使用 template 选项了,但是这会让你的应用额外增加 10kb 左右。 vue.config.js module 阅读全文
posted @ 2021-11-24 09:10 deajax 阅读(84) 评论(0) 推荐(0) 编辑
摘要:@click="$router.push('/refund')" 阅读全文
posted @ 2021-10-20 16:02 deajax 编辑
摘要:文档里 form 表单的 labelCol 属性只写了 {span: 3, offset: 12} 的用法,和参考 Grid Col 的属性参数,并没有说可以设置 style 属性和用法。 其实可以这么设置: :labelCol="{ style: 'width: 100px' }" 这是在/for 阅读全文
posted @ 2020-12-16 09:22 deajax 阅读(18937) 评论(0) 推荐(0) 编辑
摘要:<template> <li v-for="item in list" :key="item" @click.native="onPathClick(item.url)"></li> </template> <script> export default { data() { return { li 阅读全文
posted @ 2020-03-10 11:52 deajax 阅读(245) 评论(0) 推荐(0) 编辑
摘要:<template> <div id="app"> <transition :name="SkipSwitchName"> <router-view class="page" /> </transition> </div> </template> <script> export default { 阅读全文
posted @ 2020-02-15 09:45 deajax 阅读(641) 评论(0) 推荐(0) 编辑
摘要:content: () => <div>HTML Code</div> 阅读全文
posted @ 2019-10-24 15:13 deajax 阅读(417) 评论(0) 推荐(0) 编辑
摘要:小程序: 阅读全文
posted @ 2019-10-22 21:09 deajax 阅读(265) 评论(0) 推荐(0) 编辑