From 7e460156de73171f9660ce48f80703e79f8b478d Mon Sep 17 00:00:00 2001 From: Crunchy <3114200645@qq.com> Date: 星期六, 14 六月 2025 11:48:26 +0800 Subject: [PATCH] 初始化提交 --- src/views/system/dict/index.vue | 24 ++++++++++++++++++++++-- 1 files changed, 22 insertions(+), 2 deletions(-) diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue index 748db5d..180b134 100644 --- a/src/views/system/dict/index.vue +++ b/src/views/system/dict/index.vue @@ -1,14 +1,34 @@ <template> <div class="systemDict"> - 杩欐槸瀛楀吀绠$悊 + <vue-barcode + :value="value()" + >涓嶆敮鎸乿ue-barcode</vue-barcode> + + </div> </template> <script> -export default { +import VueBarcode from 'vue-barcode' +export default{ + components: { VueBarcode }, + data () { + return { + //鏉″舰鐮佸唴瀹� + } + }, + methods: { + value() { + let obj = {name:'jack'} + return JSON.stringify(obj) + } + } } + </script> + + <style> -- Gitblit v1.9.3