mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 13:30:19 +08:00
14 lines
291 B
Vue
14 lines
291 B
Vue
<template>
|
|
<el-config-provider :locale="locale">
|
|
<div>
|
|
<el-date-picker />
|
|
</div>
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ElConfigProvider } from 'element-plus';
|
|
import locale from 'element-plus/lib/locale/lang/zh-cn';
|
|
</script>
|
|
<style></style>
|