本项目是基于Vue3.2.20+ element-plus等前端和若依的后端开发的一套后台管理系统,目标是开箱即用、提供丰富的组件。目前已经上了项目的1.0 版本。项目演示地址:http://ruoyi.chenliangliang.top/
请查看该项目的文档: http://ruoyi-doc.chenliangliang.top/
当前分支只提供最简单
的权限管理
,系统管理
等,方便需要的同学去使用。后面会单独开发有用的组件库,方便大家去使用,欢迎大家star
<script setup>
import { ref } from 'vue';
const url = ref('xxxx');
/**
* 跳转到gitUp页面
*/
const goto = () => {
window.open(url.value)
}
</script>
<template>
<div>
<svg-icon icon-class="question" @click="goto" />
</div>
</template>
<style lang='scss' scoped>
</style>